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

Eastern philosophy

Eastern philosophy includes the various philosophies of South and East Asia, including Chinese philosophy, Indian philosophy, Japanese philosophy. Sometimes Iranian/Persian philosophy can be considered as eastern philosophy. Broadly speaking the term can also sometimes include Babylonian philosophy, Jewish philosophy, and Islamic philosophy, though these may also be considered Western philosophies.

Classification

Eastern philosophy includes the various philosophies of Asia, including Indian philosophy, Chinese philosophy, Iranian philosophy, Japanese philosophy, Korean philosophy, Vietnamese philosophy, Arab philosophy, Mitwi philosophy, and Jewish philosophy. The division is not purely geographic but also stems from general hermeneutic and conceptual differences that lie between Eastern and Western traditions.

Controversy

Eastern Philosophy (album)

Eastern Philosophy is the first official album by rapper Apathy. After years of deals in limbo, Apathy was finally able to release his debut album, on Babygrande Records. The song "The Winter" was released as a single.

Track listing

Credits

Additional personnel

  • Anton Pukshansky — bass (track 3, 4), guitar (track 10)
  • DJ Mek — scratches (track 3)
  • Vertygo — keyboards (track 4)
  • DJ Evil Dee — scratches (track 13)
  • Production

  • Chum the Skrilla Guerilla — track 1, 2, 5, 6, 9, 10, 12, 14
  • Celph Titled — track 3
  • Quincey Tones — track 4, 8
  • Apathy — track 7, 12
  • DJ Cheapshot — track 8
  • Exact Beats — track 11
  • 8th & Vertygo — track 13
  • Other credits

  • Executive Producer: Apathy
  • Mastering: Michael Sarsfield
  • Mixing: Chum The Skrilla Guerilla
  • Photography: Open Mic
  • Artwork: Open Mic
  • Confucius

    Confucius (/kənˈfjʃəs/, /kɒn-/; September 28, 551 – 479 BC) was a Chinese teacher, editor, politician, and philosopher of the Spring and Autumn period of Chinese history.

    The philosophy of Confucius emphasized personal and governmental morality, correctness of social relationships, justice and sincerity. His followers competed successfully with many other schools during the Hundred Schools of Thought era only to be suppressed in favor of the Legalists during the Qin Dynasty. Following the victory of Han over Chu after the collapse of Qin, Confucius's thoughts received official sanction and were further developed into a system known as Confucianism.

    Confucius is traditionally credited with having authored or edited many of the Chinese classic texts including all of the Five Classics, but modern scholars are cautious of attributing specific assertions to Confucius himself. Aphorisms concerning his teachings were compiled in the Analects, but only many years after his death.

    Confucius's principles had a basis in common Chinese tradition and belief. He championed strong family loyalty, ancestor worship, respect of elders by their children and of husbands by their wives. He also recommended family as a basis for ideal government. He espoused the well-known principle "Do not do to others what you do not want done to yourself", the Golden Rule.

    Confucius (2010 film)

    Confucius (Chinese: 孔子) is a 2010 Chinese biographical drama film written and directed by Hu Mei, starring Chow Yun-fat as the titular Chinese philosopher. The film was produced by P.H. Yu, Han Sanping, Rachel Liu and John Shum.

    Production on the film began in March 2009 with shooting on location in China's Hebei province and in Hengdian World Studios in Zhejiang.

    The film was scheduled to screen later in 2009 to commemorate the 60th anniversary of the founding of the People's Republic of China, as well as the 2,560th birthday of Confucius himself. However, the release date was later moved to January 2010.

    Funimation released it on 27 March 2012 in English Dub on DVD and Blu-ray.

    Plot

    The film begins with Confucius as an old man, thinking back. Then we see him in his early 50s, being promoted from Mayor to Minister for Law in his home state of Lu. He is confronted with ethical issues after saving a slave-boy who was due to be buried alive with his former master who has just died. There is a lot of complex politics and war, ending with Confucius being rejected and becoming a wandering scholar. After many hardships and losses, he is invited back as an old man. We see him finally preparing the Spring and Autumn Annals, expecting that this book will determine his future influence.

    Confucius (disambiguation)

    Confucius (551– 479 BCE) was a Chinese thinker and social philosopher.

    Confucius may also refer to:

  • Confucius (2010 film), Chinese film directed by Hu Mei
  • Confucius (1940 film), Chinese film directed by Fei Mu
  • Confucius (TV series), 1990 Chinese television series
  • 7853 Confucius, Main-belt Asteroid
  • Confucius Institute, non-profit public institute which aims at promoting Chinese language and culture
  • Confucius Peace Prize, a peace prize in China since 2010
  • Confuciusornis, a genus of primitive crow-sized birds from the early Cretaceous Period
  • Confuciusornithidae, a family of primitive birds from the early Cretaceous Period
  • Confucius (genus), a genus of insects in the order Hemiptera
  • Mirina confucius, a moth of the family Endromidae
  • Potanthus confucius, a butterfly of the family Hesperiidae
  • Podcasts:

    • Six Ideas From Eastern Philosophy

      The first 500 people to click this link will get a 2 month free trial of Skillshare: http://skl.sh/tsol4 Eastern philosophy has all the same goals as Western philosophy: it too seeks to make us wiser and more serene. However, the way it goes about its task shows a great deal more variety and imagination: in the East, there are lessons to be learnt in tea ceremonies, in flower arranging, in the repair of vases and in the ritual contemplation of rivers. An introduction to six of the most fascinating concepts of Eastern philosophy. Enjoying our Youtube videos? Get full access to all our audio content, videos, and thousands of thought-provoking articles, conversation cards and more with The School of Life Subscription: https://t.ly/iFe-- Be more mindful, present and inspired. Get the best ...

      published: 24 Apr 2018
    • EASTERN PHILOSOPHY - Lao Tzu

      Lao Tzu, the founder of Taoism. Enjoying our YouTube videos? Get full access to all our audio content, videos, and thousands of thought-provoking articles, conversation cards and more with The School of Life Subscription: https://t.ly/YvWZH Be more mindful, present and inspired. Get the best of The School of Life delivered straight to your inbox: https://t.ly/uJ__A SOCIAL MEDIA Feel free to follow us at the links below: Facebook: https://www.facebook.com/theschooloflifelondon/ X: https://twitter.com/TheSchoolOfLife Instagram: https://www.instagram.com/theschooloflifelondon/ Produced in collaboration with Mad Adam http://www.madadamfilms.co.uk #TheSchoolOfLife

      published: 21 Nov 2014
    • EASTERN PHILOSOPHY - The Buddha

      The Buddha's philosophy teaches us that our desires are at the root of our restlessness - and that calm can be achieved through willpower and spiritual exercise. Enjoying our Youtube videos? Get full access to all our audio content, videos, and thousands of thought-provoking articles, conversation cards and more with The School of Life Subscription: https://t.ly/8FPLI Be more mindful, present and inspired. Get the best of The School of Life delivered straight to your inbox: https://t.ly/3peoW FURTHER READING “The story of the Buddha’s life, like all of Buddhism, is a story about confronting suffering. He was born between the sixth and fourth century B.C., the son of a wealthy king in the Himalayan foothills of Nepal. It was prophesied that the young Buddha — then called Siddhartha Gau...

      published: 14 Nov 2014
    • EASTERN PHILOSOPHY - Confucius

      This great Chinese philosopher believed in everything we ignore nowadays: tradition, institution, obedience and order. That’s why he matters. Enjoying our YouTube videos? Get full access to all our audio content, videos, and thousands of thought-provoking articles, conversation cards and more with The School of Life Subscription: https://t.ly/h3h-n Be more mindful, present and inspired. Get the best of The School of Life delivered straight to your inbox: https://t.ly/P52zZ Produced in collaboration with Mad Adam Films http://www.madadamfilms.co.uk #TheSchoolOfLife

      published: 06 Feb 2015
    • EASTERN PHILOSOPHY: Wu Wei

      Wu Wei is a key concept within Daoism – and refers to a serene acceptance of events. It’s a wisdom we’re very uninclined to remember in our own times. Enjoying our Youtube videos? Get full access to all our audio content, videos, and thousands of thought-provoking articles, conversation cards and more with The School of Life Subscription: https://t.ly/zKtzZ Be more mindful, present and inspired. Get the best of The School of Life delivered straight to your inbox: https://t.ly/tFK0s SOCIAL MEDIA Feel free to follow us at the links below: Facebook: https://www.facebook.com/theschooloflifelondon/ X: https://twitter.com/TheSchoolOfLife Instagram: https://www.instagram.com/theschooloflifelondon/ CREDITS Brought to you by http://theschooloflife.com Produced in collaboration wi...

      published: 01 Apr 2016
    • Eastern Philosophy - Part 1 - Full Documentary

      What motivations underline human behaviour. This series examines the genesis of spiritual thought of nations including China, Japan & India. This philosophical journey looks at the doctrines of Confucianism, Shinto, Hinduism, Buddhism, Judaism and Islam. Please subscribe to the Documentary Base YouTube Channel: https://www.youtube.com/channel/UCX1v-zaMxcg4OAaLs7GAT8g?sub_confirmation=1 #Religion #History #Documentary

      published: 09 Sep 2019
    • EASTERN PHILOSOPHY - Matsuo Basho

      Matsuo Basho was one of the most famous Zen poets of Japan, who alerts us to the neglected beauty and interest of everyday life, and thereby reconciles us with our own circumstances. Enjoying our Youtube videos? Get full access to all our audio content, videos, and thousands of thought-provoking articles, conversation cards and more with The School of Life Subscription: https://t.ly/7Cxqe Be more mindful, present and inspired. Get the best of The School of Life delivered straight to your inbox: https://t.ly/OLDah SOCIAL MEDIA Feel free to follow us at the links below: Facebook: https://www.facebook.com/theschooloflifelondon/ X: https://twitter.com/TheSchoolOfLife Instagram: https://www.instagram.com/theschooloflifelondon/ CREDITS Brought to you by http://www.theschooloflife....

      published: 28 Aug 2015
    • EASTERN PHILOSOPHY - Kintsugi

      ‘Kintsugi’ is the remarkable Japanese art of repairing broken pottery with elegance and grace - a tradition with a lot to teach us more generally about how to handle the broken bits of ourselves. Enjoying our Youtube videos? Get full access to all our audio content, videos, and thousands of thought-provoking articles, conversation cards and more with The School of Life Subscription: https://t.ly/dGVGV Be more mindful, present and inspired. Get the best of The School of Life delivered straight to your inbox: https://t.ly/q6ugP SOCIAL MEDIA Feel free to follow us at the links below: Facebook: https://www.facebook.com/theschooloflifelondon/ X: https://twitter.com/TheSchoolOfLife Instagram: https://www.instagram.com/theschooloflifelondon/ CREDITS Brought to you by http://thescho...

      published: 12 Feb 2016
    • "🌿 Unlock Life's Secrets with Powerful Eastern Philosophy Quotes!"

      In this video, we explore powerful Eastern wisdom and Stoic philosophy to unlock the secrets to a better, more fulfilling life. By diving into timeless philosophy quotes from the East and Stoic thinkers, we uncover life-changing lessons that can transform your mindset and approach to challenges. These teachings emphasize the importance of inner peace, resilience, and the power of our thoughts. Whether you’re seeking personal growth or mental clarity, these ancient philosophies offer practical insights for mastering your emotions and navigating life’s obstacles. Join us as we uncover the best life philosophy quotes that will inspire you to live with purpose, calm, and strength. Embrace these powerful lessons to enhance your personal development journey and create a life of balance and suc...

      published: 03 Jan 2025
    • Eastern Philosophy vs Western Philosophy

      Support the channel ► Donate A coffee: https://ko-fi.com/fictionbeast ► Join my Patreon: https://www.patreon.com/fictionbeast WHERE TO FIND ME: ► Website: https://fictionbeast.com ►Instagram: https://www.instagram.com/fiction_philosophy ► E-mail: fictionbeastofficial {at} gmail.com ► Audio Podcast: https://redcircle.com/shows/c101a9a1-0e79-4515-bdb8-935f669f8c05 #fictionbeast #philosophy #literature

      published: 15 Oct 2023
    developed with YouTube
    Six Ideas From Eastern Philosophy
    8:33

    Six Ideas From Eastern Philosophy

    • Order:
    • Duration: 8:33
    • Uploaded Date: 24 Apr 2018
    • views: 1111282
    The first 500 people to click this link will get a 2 month free trial of Skillshare: http://skl.sh/tsol4 Eastern philosophy has all the same goals as Western philosophy: it too seeks to make us wiser and more serene. However, the way it goes about its task shows a great deal more variety and imagination: in the East, there are lessons to be learnt in tea ceremonies, in flower arranging, in the repair of vases and in the ritual contemplation of rivers. An introduction to six of the most fascinating concepts of Eastern philosophy. Enjoying our Youtube videos? Get full access to all our audio content, videos, and thousands of thought-provoking articles, conversation cards and more with The School of Life Subscription: https://t.ly/iFe-- Be more mindful, present and inspired. Get the best of The School of Life delivered straight to your inbox: https://t.ly/I4lIM FURTHER READING “Eastern Philosophy has always had a very similar goal to Western philosophy: that of making us wiser, less agitated, more thoughtful and readier to appreciate our lives. However, the way it has gone about this has been intriguingly different. In the East, Philosophy has taught its lessons via tea drinking ceremonies, walks in bamboo forests, contemplations of rivers and ritualised flower arranging sessions. Here are a few ideas to offer us the distinctive wisdom of a continent and enrich our notions of what philosophy might really be…” You can read more on this here: https://goo.gl/mKAjp5 MORE SCHOOL OF LIFE Watch more films on SELF in our playlist: http://bit.ly/TSOLphilosophy You can submit translations and transcripts on all of our videos here: https://www.youtube.com/timedtext_cs_panel?c=UC7IcJI8PUf5Z3zKxnZvTBog&tab=2 Find out how more here: https://support.google.com/youtube/answer/6054623?hl=en-GB SOCIAL MEDIA Feel free to follow us at the links below: Facebook: https://www.facebook.com/theschooloflifelondon/ Twitter: https://twitter.com/TheSchoolOfLife Instagram: https://www.instagram.com/theschooloflifelondon/ CREDITS Produced in collaboration with: Mad Adam http://madadamfilms.co.uk/work.html #TheSchoolOfLife
    https://wn.com/Six_Ideas_From_Eastern_Philosophy
    EASTERN PHILOSOPHY - Lao Tzu
    5:30

    EASTERN PHILOSOPHY - Lao Tzu

    • Order:
    • Duration: 5:30
    • Uploaded Date: 21 Nov 2014
    • views: 2353692
    Lao Tzu, the founder of Taoism. Enjoying our YouTube videos? Get full access to all our audio content, videos, and thousands of thought-provoking articles, conversation cards and more with The School of Life Subscription: https://t.ly/YvWZH Be more mindful, present and inspired. Get the best of The School of Life delivered straight to your inbox: https://t.ly/uJ__A SOCIAL MEDIA Feel free to follow us at the links below: Facebook: https://www.facebook.com/theschooloflifelondon/ X: https://twitter.com/TheSchoolOfLife Instagram: https://www.instagram.com/theschooloflifelondon/ Produced in collaboration with Mad Adam http://www.madadamfilms.co.uk #TheSchoolOfLife
    https://wn.com/Eastern_Philosophy_Lao_Tzu
    EASTERN PHILOSOPHY - The Buddha
    5:43

    EASTERN PHILOSOPHY - The Buddha

    • Order:
    • Duration: 5:43
    • Uploaded Date: 14 Nov 2014
    • views: 3250622
    The Buddha's philosophy teaches us that our desires are at the root of our restlessness - and that calm can be achieved through willpower and spiritual exercise. Enjoying our Youtube videos? Get full access to all our audio content, videos, and thousands of thought-provoking articles, conversation cards and more with The School of Life Subscription: https://t.ly/8FPLI Be more mindful, present and inspired. Get the best of The School of Life delivered straight to your inbox: https://t.ly/3peoW FURTHER READING “The story of the Buddha’s life, like all of Buddhism, is a story about confronting suffering. He was born between the sixth and fourth century B.C., the son of a wealthy king in the Himalayan foothills of Nepal. It was prophesied that the young Buddha — then called Siddhartha Gautama — would either become the emperor of India or a very holy man. Since Siddhartha’s father desperately wanted him to be the former, he kept the child isolated in a palace with every imaginable luxury: jewels, servants, lotus ponds, even beautiful dancing women…” You can read more on this and many other topics here: https://goo.gl/mwCD2u MORE SCHOOL OF LIFE More films on SELF in our playlist below: http://bit.ly/TSOLself SOCIAL MEDIA Feel free to follow us at the links below: Facebook: https://www.facebook.com/theschooloflifelondon/ X: https://twitter.com/TheSchoolOfLife Instagram: https://www.instagram.com/theschooloflifelondon/ CREDITS Produced in collaboration with: Mad Adam http://www.madadamfilms.co.uk #TheSchoolOfLife
    https://wn.com/Eastern_Philosophy_The_Buddha
    EASTERN PHILOSOPHY - Confucius
    5:36

    EASTERN PHILOSOPHY - Confucius

    • Order:
    • Duration: 5:36
    • Uploaded Date: 06 Feb 2015
    • views: 2197848
    This great Chinese philosopher believed in everything we ignore nowadays: tradition, institution, obedience and order. That’s why he matters. Enjoying our YouTube videos? Get full access to all our audio content, videos, and thousands of thought-provoking articles, conversation cards and more with The School of Life Subscription: https://t.ly/h3h-n Be more mindful, present and inspired. Get the best of The School of Life delivered straight to your inbox: https://t.ly/P52zZ Produced in collaboration with Mad Adam Films http://www.madadamfilms.co.uk #TheSchoolOfLife
    https://wn.com/Eastern_Philosophy_Confucius
    EASTERN PHILOSOPHY: Wu Wei
    5:24

    EASTERN PHILOSOPHY: Wu Wei

    • Order:
    • Duration: 5:24
    • Uploaded Date: 01 Apr 2016
    • views: 1551929
    Wu Wei is a key concept within Daoism – and refers to a serene acceptance of events. It’s a wisdom we’re very uninclined to remember in our own times. Enjoying our Youtube videos? Get full access to all our audio content, videos, and thousands of thought-provoking articles, conversation cards and more with The School of Life Subscription: https://t.ly/zKtzZ Be more mindful, present and inspired. Get the best of The School of Life delivered straight to your inbox: https://t.ly/tFK0s SOCIAL MEDIA Feel free to follow us at the links below: Facebook: https://www.facebook.com/theschooloflifelondon/ X: https://twitter.com/TheSchoolOfLife Instagram: https://www.instagram.com/theschooloflifelondon/ CREDITS Brought to you by http://theschooloflife.com Produced in collaboration with Mad Adam http://madadamfilms.co.uk #TheSchoolOfLife
    https://wn.com/Eastern_Philosophy_Wu_Wei
    Eastern Philosophy - Part 1 - Full Documentary
    47:35

    Eastern Philosophy - Part 1 - Full Documentary

    • Order:
    • Duration: 47:35
    • Uploaded Date: 09 Sep 2019
    • views: 182430
    What motivations underline human behaviour. This series examines the genesis of spiritual thought of nations including China, Japan & India. This philosophical journey looks at the doctrines of Confucianism, Shinto, Hinduism, Buddhism, Judaism and Islam. Please subscribe to the Documentary Base YouTube Channel: https://www.youtube.com/channel/UCX1v-zaMxcg4OAaLs7GAT8g?sub_confirmation=1 #Religion #History #Documentary
    https://wn.com/Eastern_Philosophy_Part_1_Full_Documentary
    EASTERN PHILOSOPHY - Matsuo Basho
    5:47

    EASTERN PHILOSOPHY - Matsuo Basho

    • Order:
    • Duration: 5:47
    • Uploaded Date: 28 Aug 2015
    • views: 617387
    Matsuo Basho was one of the most famous Zen poets of Japan, who alerts us to the neglected beauty and interest of everyday life, and thereby reconciles us with our own circumstances. Enjoying our Youtube videos? Get full access to all our audio content, videos, and thousands of thought-provoking articles, conversation cards and more with The School of Life Subscription: https://t.ly/7Cxqe Be more mindful, present and inspired. Get the best of The School of Life delivered straight to your inbox: https://t.ly/OLDah SOCIAL MEDIA Feel free to follow us at the links below: Facebook: https://www.facebook.com/theschooloflifelondon/ X: https://twitter.com/TheSchoolOfLife Instagram: https://www.instagram.com/theschooloflifelondon/ CREDITS Brought to you by http://www.theschooloflife.com Produced in collaboration with Mad Adam http://www.madadamfilms.co.uk #TheSchoolOfLife
    https://wn.com/Eastern_Philosophy_Matsuo_Basho
    EASTERN PHILOSOPHY - Kintsugi
    3:59

    EASTERN PHILOSOPHY - Kintsugi

    • Order:
    • Duration: 3:59
    • Uploaded Date: 12 Feb 2016
    • views: 731477
    ‘Kintsugi’ is the remarkable Japanese art of repairing broken pottery with elegance and grace - a tradition with a lot to teach us more generally about how to handle the broken bits of ourselves. Enjoying our Youtube videos? Get full access to all our audio content, videos, and thousands of thought-provoking articles, conversation cards and more with The School of Life Subscription: https://t.ly/dGVGV Be more mindful, present and inspired. Get the best of The School of Life delivered straight to your inbox: https://t.ly/q6ugP SOCIAL MEDIA Feel free to follow us at the links below: Facebook: https://www.facebook.com/theschooloflifelondon/ X: https://twitter.com/TheSchoolOfLife Instagram: https://www.instagram.com/theschooloflifelondon/ CREDITS Brought to you by http://theschooloflife.com Produced in collaboration with Mad Adam Films http://madadamfilms.co.uk #TheSchoolOfLife
    https://wn.com/Eastern_Philosophy_Kintsugi
    "🌿 Unlock Life's Secrets with Powerful Eastern Philosophy Quotes!"
    5:55

    "🌿 Unlock Life's Secrets with Powerful Eastern Philosophy Quotes!"

    • Order:
    • Duration: 5:55
    • Uploaded Date: 03 Jan 2025
    • views: 30
    In this video, we explore powerful Eastern wisdom and Stoic philosophy to unlock the secrets to a better, more fulfilling life. By diving into timeless philosophy quotes from the East and Stoic thinkers, we uncover life-changing lessons that can transform your mindset and approach to challenges. These teachings emphasize the importance of inner peace, resilience, and the power of our thoughts. Whether you’re seeking personal growth or mental clarity, these ancient philosophies offer practical insights for mastering your emotions and navigating life’s obstacles. Join us as we uncover the best life philosophy quotes that will inspire you to live with purpose, calm, and strength. Embrace these powerful lessons to enhance your personal development journey and create a life of balance and success. #EasternWisdom #Stoicism #LifeQuotes #PersonalGrowth #PhilosophyForLife Thanks for Watching. Watch other Videos: 12 Morning Habits for Success | Stoic Morning Routine ⏳ https://youtu.be/xFrriBzM90Q "10 Stoic Principles to Master the Art of Letting Go & Peace | Not Caring" https://youtu.be/DGBuhHH_J50 10 Stoic Lessons to Handle Disrespect (MUST WATCH) | STOICISM https://youtu.be/L3Aybmzfur4 12 Times You Must Stay Silent | Marcus Aurelius' Stoic Wisdom https://youtu.be/TU_N0NPH-Bg 12 Times You Must Stay Silent | Marcus Aurelius' Stoic Wisdom https://youtu.be/TU_N0NPH-Bg 20 Gaslighting Tactics Exposed | A Stoic's Guide to Mental Freedom | Stoicism https://youtu.be/FyG3O26BfoQ Reverse Psychology: 15 Stoic Lessons to Turn Rejection Into Power https://youtu.be/3wKcdCEmNDc 10 Life-Changing Lessons from Stoic Philosophy You Must Know https://youtu.be/BCox8CHXPXU 10 Rules to Train Your Mind: Respond, Don’t React | Stoic Wisdom https://youtu.be/AzI_DyjJs6k "Relax & Manifest: 10 Stoic Lessons to Transform Your Life Today!" https://youtu.be/RJY1ivgyYoI "The Legend Dr. Muhammad Yunus: A Stoic's Journey to Change the Wor https://youtu.be/0pNGQdTS_Cw 15 Stoic WAYS To DESTROY Your Enemy Without FIGHTI | Stoic https://youtu.be/DZpK7DajrBE "Force Your Brain to Embrace Hard Things | Stoic Mental Mastery" https://youtu.be/fUDvemzoL_A "10 Times You MUST Speak Up Against Narcissists | Stoic Wisdom" https://youtu.be/MQgo0jThHTg "10 Stoic Ways to Set Boundaries with Toxic People Effectively" https://youtu.be/4BZfcZ7zjLQ "Unlock Powerful Eastern Wisdom & Stoic Quotes for Life!" https://youtu.be/X0lcoM3MMyc "💡 Life-Changing Lessons That Will Transform Your Mindset!" https://youtu.be/GYJeoYqHQcg "🌿 Unlock Life's Secrets with Powerful Eastern Philosophy Quotes!" https://youtu.be/EggBd6-SwAQ
    https://wn.com/🌿_Unlock_Life's_Secrets_With_Powerful_Eastern_Philosophy_Quotes
    Eastern Philosophy vs Western Philosophy
    18:19

    Eastern Philosophy vs Western Philosophy

    • Order:
    • Duration: 18:19
    • Uploaded Date: 15 Oct 2023
    • views: 31729
    Support the channel ► Donate A coffee: https://ko-fi.com/fictionbeast ► Join my Patreon: https://www.patreon.com/fictionbeast WHERE TO FIND ME: ► Website: https://fictionbeast.com ►Instagram: https://www.instagram.com/fiction_philosophy ► E-mail: fictionbeastofficial {at} gmail.com ► Audio Podcast: https://redcircle.com/shows/c101a9a1-0e79-4515-bdb8-935f669f8c05 #fictionbeast #philosophy #literature
    https://wn.com/Eastern_Philosophy_Vs_Western_Philosophy
    • Who was Confucius? - Bryan W. Van Norden

      View full lesson: http://ed.ted.com/lessons/who-was-confucius-bryan-w-van-norden Most people recognize his name and know that he is famous for having said something, but considering the long-lasting impact his teachings have had on the world, very few people know who Confucius really was, what he really said... and why. Bryan W. Van Norden reveals the man behind the mystery. Lesson by Bryan W. Van Norden, animation by Tomás Pichardo-Espaillat.

      published: 27 Oct 2015
    • EASTERN PHILOSOPHY - Confucius

      This great Chinese philosopher believed in everything we ignore nowadays: tradition, institution, obedience and order. That’s why he matters. Enjoying our YouTube videos? Get full access to all our audio content, videos, and thousands of thought-provoking articles, conversation cards and more with The School of Life Subscription: https://t.ly/h3h-n Be more mindful, present and inspired. Get the best of The School of Life delivered straight to your inbox: https://t.ly/P52zZ Produced in collaboration with Mad Adam Films http://www.madadamfilms.co.uk #TheSchoolOfLife

      published: 06 Feb 2015
    • Confucius: The Sage Who Shaped The East | Confucius | Timeline

      Confucius is one of history's most influential men - a sage, philosopher and teacher - who, with Socrates and Buddha, lived at an extraordinary time in the evolution of mankind's civilization. This stunning drama-documentary explores the life and times of Confucius and demystifies his ideas. We all want to understand China, and through Confucius we can. Confucius - it is a name we all know. But who was Confucius? What was his story and how did it enable him to create his enduring moral philosophy? What lies at the heart of Confucius' thinking; how and why was it adopted by a whole nation and what is its influence today? This documentary will unlock Confucius in a spectacular and fascinating film that places him in his ancient and modern context and bring the ideas and sayings of this great...

      published: 04 Jul 2020
    • Confucius | The Art of Becoming Better (Self-Cultivation)

      Isn’t it the case we should always stay true to ourselves? Which means that we ought to know who we are, and organize our lives in ways that are compatible with our personalities? When we look for a partner, for example, we look for someone that we’re compatible with, and in regards to education and work, we need to do something that fits our characteristics. However, "not knowing who we are" seems to be a problem. But luckily, this problem can be solved by taking a personality test, by talking to a counselor, or perhaps by going on a long solo-trip around the world to (quote on quote) “find ourselves”. Because, after all, our true selves lie somewhere hidden deep within. Right? Well, according to Michael Puett, Harvard professor of Chinese History and author of the book The Path, this...

      published: 05 Nov 2020
    • 10 Life Lessons From Confucius (Confucianism)

      First 100 people to click on https://www.blinkist.com/philosophiesforlife will get a 7 day free trial. They will also receive a 25% discount on their one year plan. 10 Life Lessons From Confucius (Confucianism) In this video, we will be talking about 10 life lessons that we can learn from Confucius. Confucius was one of the greatest Eastern philosophers of all time, whose teachings deeply influenced East Asian life and thought. His philosophical movement, Confucianism, emphasizes morality, honesty, the importance of social relationships and the belief that man is fundamentally good and capable of changing, evolving and improving. So here are 10 lessons we can all learn from Confucius - 01. Learn to see beauty in everything 02. Moral values starts at home 03. Never do anything half-hear...

      published: 17 Dec 2019
    • CONFUCIUS : Wise Quotes That Will Transform Your Life | Strong Quotes, Chinese Wisdom

      Confucius was a Chinese philosopher, teacher, and political figure whose ideas and teachings have had a profound impact on Chinese culture and history. He is widely considered one of the most influential figures in Chinese history and his philosophy emphasizes the importance of personal and governmental morality, justice, sincerity, and respect for authority. Thanks for watching and don't forget to subscribe and like if this video was helpful to you. #wisewords#confucius#confuciusquotes#lifequotes

      published: 12 Apr 2023
    • Intro to Confucianism

      Join our Patreon community!: https://www.patreon.com/religionforbreakfast One-time donations here!: https://www.paypal.me/religionforbreakfast Check out my favorite religious studies books by following this affiliate link to my Amazon page: https://www.amazon.com/shop/religionforbreakfast Credits: Executive Producers: Daniel Cuevas, Maritza Co-Writers: Ori Tavor and Andrew Henry Editor: Mark Henry

      published: 08 Jul 2021
    • History-Makers: Confucius

      Welcome to the challenge run of History-Makers, where I attempt to give insightful historical context to someone whose backstory is almost entirely blank. SOURCES & Further Reading: "Confucius: A Very Short Introduction" by Gardner, "China: A History" by Keay, "The Analects of Confucius", "The Mencius". This video was edited by Sophia Ricciardi AKA "Indigo". https://www.sophiakricci.com/ Our content is intended for teenage audiences and up. PATREON: https://www.Patreon.com/OSP MERCH LINKS: https://www.redbubble.com/people/OSPYouTube OUR WEBSITE: https://www.OverlySarcasticProductions.com/ Find us on Twitter https://www.Twitter.com/OSPYouTube Find us on Reddit https://www.Reddit.com/r/OSP/

      published: 19 Jun 2020
    • Motivation by Confucius 🧐 #viral #shorts #short #motivation

      Motivation by Confucius!

      published: 23 Jul 2023
    • Confucius: The Real Man Behind The Legendary Ancient Philosopher | Confucius | Absolute History

      Confucius is one of history's most influential men - a sage, philosopher and teacher - who, with Socrates and Buddha, lived at an extraordinary time in the evolution of mankind's civilization. This stunning drama-documentary explores the life and times of Confucius and demystifies his ideas. We all want to understand China, and through Confucius we can. Confucius - it is a name we all know. But who was Confucius? What was his story and how did it enable him to create his enduring moral philosophy? What lies at the heart of Confucius' thinking; how and why was it adopted by a whole nation and what is its influence today? This documentary will unlock Confucius in a spectacular and fascinating film that places him in his ancient and modern context and bring the ideas and sayings of this great...

      published: 24 Mar 2023
    developed with YouTube
    Who was Confucius? - Bryan W. Van Norden
    4:30

    Who was Confucius? - Bryan W. Van Norden

    • Order:
    • Duration: 4:30
    • Uploaded Date: 27 Oct 2015
    • views: 1535194
    View full lesson: http://ed.ted.com/lessons/who-was-confucius-bryan-w-van-norden Most people recognize his name and know that he is famous for having said something, but considering the long-lasting impact his teachings have had on the world, very few people know who Confucius really was, what he really said... and why. Bryan W. Van Norden reveals the man behind the mystery. Lesson by Bryan W. Van Norden, animation by Tomás Pichardo-Espaillat.
    https://wn.com/Who_Was_Confucius_Bryan_W._Van_Norden
    EASTERN PHILOSOPHY - Confucius
    5:36

    EASTERN PHILOSOPHY - Confucius

    • Order:
    • Duration: 5:36
    • Uploaded Date: 06 Feb 2015
    • views: 2197848
    This great Chinese philosopher believed in everything we ignore nowadays: tradition, institution, obedience and order. That’s why he matters. Enjoying our YouTube videos? Get full access to all our audio content, videos, and thousands of thought-provoking articles, conversation cards and more with The School of Life Subscription: https://t.ly/h3h-n Be more mindful, present and inspired. Get the best of The School of Life delivered straight to your inbox: https://t.ly/P52zZ Produced in collaboration with Mad Adam Films http://www.madadamfilms.co.uk #TheSchoolOfLife
    https://wn.com/Eastern_Philosophy_Confucius
    Confucius: The Sage Who Shaped The East | Confucius | Timeline
    1:28:58

    Confucius: The Sage Who Shaped The East | Confucius | Timeline

    • Order:
    • Duration: 1:28:58
    • Uploaded Date: 04 Jul 2020
    • views: 1476462
    Confucius is one of history's most influential men - a sage, philosopher and teacher - who, with Socrates and Buddha, lived at an extraordinary time in the evolution of mankind's civilization. This stunning drama-documentary explores the life and times of Confucius and demystifies his ideas. We all want to understand China, and through Confucius we can. Confucius - it is a name we all know. But who was Confucius? What was his story and how did it enable him to create his enduring moral philosophy? What lies at the heart of Confucius' thinking; how and why was it adopted by a whole nation and what is its influence today? This documentary will unlock Confucius in a spectacular and fascinating film that places him in his ancient and modern context and bring the ideas and sayings of this great philosopher to life. It's like Netflix for history... Sign up to History Hit, the world's best history documentary service, at a huge discount using the code 'TIMELINE' ---ᐳ http://bit.ly/3a7ambu You can find more from us on: https://www.facebook.com/timelineWH https://www.instagram.com/timelineWH This channel is part of the History Hit Network. Any queries, please contact owned-enquiries@littledotstudios.com
    https://wn.com/Confucius_The_Sage_Who_Shaped_The_East_|_Confucius_|_Timeline
    Confucius | The Art of Becoming Better (Self-Cultivation)
    14:03

    Confucius | The Art of Becoming Better (Self-Cultivation)

    • Order:
    • Duration: 14:03
    • Uploaded Date: 05 Nov 2020
    • views: 942793
    Isn’t it the case we should always stay true to ourselves? Which means that we ought to know who we are, and organize our lives in ways that are compatible with our personalities? When we look for a partner, for example, we look for someone that we’re compatible with, and in regards to education and work, we need to do something that fits our characteristics. However, "not knowing who we are" seems to be a problem. But luckily, this problem can be solved by taking a personality test, by talking to a counselor, or perhaps by going on a long solo-trip around the world to (quote on quote) “find ourselves”. Because, after all, our true selves lie somewhere hidden deep within. Right? Well, according to Michael Puett, Harvard professor of Chinese History and author of the book The Path, this way of thinking is extremely limited and even dangerous when it comes to how we live our lives. The Path (affiliate link): https://amzn.to/3mRmF0f In Chinese philosophy, there’s no fixed ‘self’ the way we see it in the Western world. Who we are, and what we could become is much more tangible, than a fixed set of characteristics that define a personality. This Eastern ‘self’ is always evolving, changing, losing, and gaining, and isn’t so much defined by what’s within, but by what we do. So, it cannot be found, but it can be cultivated. Self-cultivation is a psychological process that’s part of the ancient Chinese system of thought called Confucianism. Its founder, Confucius, firmly believed in the power of ritual, and how it can make our lives better. This video explores the art of becoming better, based on the teachings of Confucius. Support the channel: ✔️ PayPal: https://www.paypal.me/einzelgangerco ✔️ Patreon: https://www.patreon.com/einzelgangster ✔️ Bitcoin: 3HQnEz1LQ4G6dqN2LdZgzc7qoJjJCyWjTC (Donated BTC and want in the credits? Send me an email with the amount/address) Purchase my book (affiliate links): 📘 Paperback: https://amzn.to/2RJYfti 💻 Ebook: https://amzn.to/35e23a5 Merchandise: 🛍️ Shop: https://teespring.com/stores/einzelgangerstore 🛍️ Merchandise design by Punksthetic Art: https://www.youtube.com/user/JRStoneart 🎵 Music used: Creative Commons (attributions): Dodenherdenking Vorsten TV: https://commons.wikimedia.org/wiki/File:Vorsten_TV-_Koningspaar_bij_nationale_dodenherdenking_op_De_Dam.webm Dodenherdenking footage: https://archive.org/details/archiveteam_videobot_twitter_com_727940335561805824 Dodenherdenking (1): https://commons.wikimedia.org/wiki/File:Dodenherdenking_op_Dam_in_Amsterdam_koningin_Juliana_en_Prins_Bernhard_leggen_k,_Bestanddeelnr_928-5584.jpg Dodenherdenking (2): https://commons.wikimedia.org/wiki/File:Scouts_dragen_de_kransen_naar_het_Nationaal_Monument..jpg Dodenherdenking (3): https://commons.wikimedia.org/wiki/File:Erehaag.jpg Dodenherdenking (4): https://commons.wikimedia.org/wiki/File:Koninginnen,_prinsen,_dodenherdenkingen,_kransleggingen,_Bestanddeelnr_932-5812.jpg Confucius (1): https://upload.wikimedia.org/wikipedia/commons/thumb/6/62/Confucius_Statue_at_the_Confucius_Temple.jpg/800px-Confucius_Statue_at_the_Confucius_Temple.jpg Confucius (2): https://upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Confucius%27_statue_in_China_%282%29.jpg/1280px-Confucius%27_statue_in_China_%282%29.jpg Confucius (3): https://upload.wikimedia.org/wikipedia/commons/thumb/2/23/33.03a_Image_of_Confucius.png/800px-33.03a_Image_of_Confucius.png Confucius (4): https://upload.wikimedia.org/wikipedia/commons/thumb/6/6d/The_Confucius_statue_inside_wuhan_university_dept_of_philosophy.jpg/1280px-The_Confucius_statue_inside_wuhan_university_dept_of_philosophy.jpg Confucius (5): https://upload.wikimedia.org/wikipedia/commons/thumb/4/4d/Confucius%27_statue_in_China_%281%29.jpg/1280px-Confucius%27_statue_in_China_%281%29.jpg Confucius (6): https://upload.wikimedia.org/wikipedia/commons/thumb/a/a4/%281%29Confucius_statue_133.jpg/1280px-%281%29Confucius_statue_133.jpg Confucius (7): https://upload.wikimedia.org/wikipedia/commons/thumb/5/55/Confucius_Sinarum_Philosophus_portrait.png/800px-Confucius_Sinarum_Philosophus_portrait.png Confucius (8): https://upload.wikimedia.org/wikipedia/commons/thumb/2/2b/Confucius_%2815372407045%29.jpg/800px-Confucius_%2815372407045%29.jpg Confucius temple: https://upload.wikimedia.org/wikipedia/commons/thumb/c/cc/Kaohsiung_Taiwan_Kaohsiung-Confucius-Temple-01.jpg/1920px-Kaohsiung_Taiwan_Kaohsiung-Confucius-Temple-01.jpg The Analects: https://upload.wikimedia.org/wikipedia/commons/thumb/a/a0/Analects.JPG/1280px-Analects.JPG Dr. Phil: https://upload.wikimedia.org/wikipedia/commons/6/6a/Prince_Avenue_Mascot.jpg Fair use: Michael Puett: https://youtu.be/MfnSTr6-1g4 #confucius #selfimprovement #confuciusteachings 00:00 Intro 02:38 On Confucius 04:15 The "self" 06:52 Focusing on change 08:30 The power of ritual 10:35 Self-cultivation
    https://wn.com/Confucius_|_The_Art_Of_Becoming_Better_(Self_Cultivation)
    10 Life Lessons From Confucius (Confucianism)
    18:21

    10 Life Lessons From Confucius (Confucianism)

    • Order:
    • Duration: 18:21
    • Uploaded Date: 17 Dec 2019
    • views: 1178535
    First 100 people to click on https://www.blinkist.com/philosophiesforlife will get a 7 day free trial. They will also receive a 25% discount on their one year plan. 10 Life Lessons From Confucius (Confucianism) In this video, we will be talking about 10 life lessons that we can learn from Confucius. Confucius was one of the greatest Eastern philosophers of all time, whose teachings deeply influenced East Asian life and thought. His philosophical movement, Confucianism, emphasizes morality, honesty, the importance of social relationships and the belief that man is fundamentally good and capable of changing, evolving and improving. So here are 10 lessons we can all learn from Confucius - 01. Learn to see beauty in everything 02. Moral values starts at home 03. Never do anything half-heartedly 04. Never give up 05. Everyone has wisdom to share 06. Ignore gossips 07. Think of the consequences 08. Practice the art of silence 09. Practice Filial Piety 10. Embrace getting older Hope you enjoyed this video and find these insights helpful. Confucianism, is a system of thought and behavior originating in ancient China. It is described as tradition, a philosophy, a religion, a humanistic or rationalistic religion, a way of governing, or simply a way of life. It was founded by China’s most iconic historical figures, Confucius. Subscribe To Philosophies for Life – https://www.youtube.com/channel/UCp1mRTkVlqDnxz_9S0YD9YQ Music - Enchanting Inspirational Music - Royalty Free - This Moment https://www.youtube.com/watch?v=VObTSz0ufhQ
    https://wn.com/10_Life_Lessons_From_Confucius_(Confucianism)
    CONFUCIUS : Wise Quotes That Will Transform Your Life | Strong Quotes, Chinese Wisdom
    5:24

    CONFUCIUS : Wise Quotes That Will Transform Your Life | Strong Quotes, Chinese Wisdom

    • Order:
    • Duration: 5:24
    • Uploaded Date: 12 Apr 2023
    • views: 359078
    Confucius was a Chinese philosopher, teacher, and political figure whose ideas and teachings have had a profound impact on Chinese culture and history. He is widely considered one of the most influential figures in Chinese history and his philosophy emphasizes the importance of personal and governmental morality, justice, sincerity, and respect for authority. Thanks for watching and don't forget to subscribe and like if this video was helpful to you. #wisewords#confucius#confuciusquotes#lifequotes
    https://wn.com/Confucius_Wise_Quotes_That_Will_Transform_Your_Life_|_Strong_Quotes,_Chinese_Wisdom
    Intro to Confucianism
    18:23

    Intro to Confucianism

    • Order:
    • Duration: 18:23
    • Uploaded Date: 08 Jul 2021
    • views: 329826
    Join our Patreon community!: https://www.patreon.com/religionforbreakfast One-time donations here!: https://www.paypal.me/religionforbreakfast Check out my favorite religious studies books by following this affiliate link to my Amazon page: https://www.amazon.com/shop/religionforbreakfast Credits: Executive Producers: Daniel Cuevas, Maritza Co-Writers: Ori Tavor and Andrew Henry Editor: Mark Henry
    https://wn.com/Intro_To_Confucianism
    History-Makers: Confucius
    9:37

    History-Makers: Confucius

    • Order:
    • Duration: 9:37
    • Uploaded Date: 19 Jun 2020
    • views: 542135
    Welcome to the challenge run of History-Makers, where I attempt to give insightful historical context to someone whose backstory is almost entirely blank. SOURCES & Further Reading: "Confucius: A Very Short Introduction" by Gardner, "China: A History" by Keay, "The Analects of Confucius", "The Mencius". This video was edited by Sophia Ricciardi AKA "Indigo". https://www.sophiakricci.com/ Our content is intended for teenage audiences and up. PATREON: https://www.Patreon.com/OSP MERCH LINKS: https://www.redbubble.com/people/OSPYouTube OUR WEBSITE: https://www.OverlySarcasticProductions.com/ Find us on Twitter https://www.Twitter.com/OSPYouTube Find us on Reddit https://www.Reddit.com/r/OSP/
    https://wn.com/History_Makers_Confucius
    Motivation by Confucius 🧐 #viral #shorts #short #motivation
    0:14

    Motivation by Confucius 🧐 #viral #shorts #short #motivation

    • Order:
    • Duration: 0:14
    • Uploaded Date: 23 Jul 2023
    • views: 235
    Motivation by Confucius!
    https://wn.com/Motivation_By_Confucius_🧐_Viral_Shorts_Short_Motivation
    Confucius: The Real Man Behind The Legendary Ancient Philosopher | Confucius | Absolute History
    1:29:04

    Confucius: The Real Man Behind The Legendary Ancient Philosopher | Confucius | Absolute History

    • Order:
    • Duration: 1:29:04
    • Uploaded Date: 24 Mar 2023
    • views: 57057
    Confucius is one of history's most influential men - a sage, philosopher and teacher - who, with Socrates and Buddha, lived at an extraordinary time in the evolution of mankind's civilization. This stunning drama-documentary explores the life and times of Confucius and demystifies his ideas. We all want to understand China, and through Confucius we can. Confucius - it is a name we all know. But who was Confucius? What was his story and how did it enable him to create his enduring moral philosophy? What lies at the heart of Confucius' thinking; how and why was it adopted by a whole nation and what is its influence today? This documentary will unlock Confucius in a spectacular and fascinating film that places him in his ancient and modern context and bring the ideas and sayings of this great philosopher to life. 📺 It's like Netflix for history... Sign up to History Hit, the world's best history documentary service and get 50% off using the code 'AbsoluteHistory' https://bit.ly/3vn5cSH This channel is part of the History Hit Network. Any queries please contact: owned-enquiries@littledotstudios.com #AbsoluteHistory
    https://wn.com/Confucius_The_Real_Man_Behind_The_Legendary_Ancient_Philosopher_|_Confucius_|_Absolute_History
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Six Ideas From Eastern Philosophy
      8:33
      Six Ideas From Eastern Philosophyremove from playlist
    • EASTERN PHILOSOPHY - Lao Tzu
      5:30
      EASTERN PHILOSOPHY - Lao Tzuremove from playlist
    • EASTERN PHILOSOPHY - The Buddha
      5:43
      EASTERN PHILOSOPHY - The Buddharemove from playlist
    • EASTERN PHILOSOPHY - Confucius
      5:36
      EASTERN PHILOSOPHY - Confuciusremove from playlist
    • EASTERN PHILOSOPHY: Wu Wei
      5:24
      EASTERN PHILOSOPHY: Wu Weiremove from playlist
    • Eastern Philosophy - Part 1 - Full Documentary
      47:35
      Eastern Philosophy - Part 1 - Full Documentaryremove from playlist
    • EASTERN PHILOSOPHY - Matsuo Basho
      5:47
      EASTERN PHILOSOPHY - Matsuo Bashoremove from playlist
    • EASTERN PHILOSOPHY - Kintsugi
      3:59
      EASTERN PHILOSOPHY - Kintsugiremove from playlist
    • 5:55
      "🌿 Unlock Life's Secrets with Powerful Eastern Philosophy Quotes!"remove from playlist
    • Eastern Philosophy vs Western Philosophy
      18:19
      Eastern Philosophy vs Western Philosophyremove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Six Ideas From Eastern Philosophy

    The first 500 people to click this link will get a 2 month free trial of Skillshare: http://skl.sh/tsol4 Eastern philosophy has all the same goals as Western philosophy: it too seeks to make us wiser and more serene. However, the way it goes about its task shows a great deal more variety and imagination: in the East, there are lessons to be learnt in tea ceremonies, in flower arranging, in the repair of vases and in the ritual contemplation of rivers. An introduction to six of the most fascinating concepts of Eastern philosophy. Enjoying our Youtube videos? Get full access to all our audio content, videos, and thousands of thought-provoking articles, conversation cards and more with The School of Life Subscription: https://t.ly/iFe-- Be more mindful, present and inspired. Get the best of The School of Life delivered straight to your inbox: https://t.ly/I4lIM FURTHER READING “Eastern Philosophy has always had a very similar goal to Western philosophy: that of making us wiser, less agitated, more thoughtful and readier to appreciate our lives. However, the way it has gone about this has been intriguingly different. In the East, Philosophy has taught its lessons via tea drinking ceremonies, walks in bamboo forests, contemplations of rivers and ritualised flower arranging sessions. Here are a few ideas to offer us the distinctive wisdom of a continent and enrich our notions of what philosophy might really be…” You can read more on this here: https://goo.gl/mKAjp5 MORE SCHOOL OF LIFE Watch more films on SELF in our playlist: http://bit.ly/TSOLphilosophy You can submit translations and transcripts on all of our videos here: https://www.youtube.com/timedtext_cs_panel?c=UC7IcJI8PUf5Z3zKxnZvTBog&tab=2 Find out how more here: https://support.google.com/youtube/answer/6054623?hl=en-GB SOCIAL MEDIA Feel free to follow us at the links below: Facebook: https://www.facebook.com/theschooloflifelondon/ Twitter: https://twitter.com/TheSchoolOfLife Instagram: https://www.instagram.com/theschooloflifelondon/ CREDITS Produced in collaboration with: Mad Adam http://madadamfilms.co.uk/work.html #TheSchoolOfLife
    8:33
    Six Ideas From Eastern Philosophy
    The first 500 people to click this link will get a 2 month free trial of Skillshare: http:...
    published: 24 Apr 2018
    Play in Full Screen
    5:30
    EASTERN PHILOSOPHY - Lao Tzu
    Lao Tzu, the founder of Taoism. Enjoying our YouTube videos? Get full access to all our a...
    published: 21 Nov 2014
    Play in Full Screen
    5:43
    EASTERN PHILOSOPHY - The Buddha
    The Buddha's philosophy teaches us that our desires are at the root of our restlessness - ...
    published: 14 Nov 2014
    Play in Full Screen
    5:36
    EASTERN PHILOSOPHY - Confucius
    This great Chinese philosopher believed in everything we ignore nowadays: tradition, insti...
    published: 06 Feb 2015
    Play in Full Screen
    5:24
    EASTERN PHILOSOPHY: Wu Wei
    Wu Wei is a key concept within Daoism – and refers to a serene acceptance of events. It’s ...
    published: 01 Apr 2016
    Play in Full Screen
    47:35
    Eastern Philosophy - Part 1 - Full Documentary
    What motivations underline human behaviour. This series examines the genesis of spiritual ...
    published: 09 Sep 2019
    Play in Full Screen
    5:47
    EASTERN PHILOSOPHY - Matsuo Basho
    Matsuo Basho was one of the most famous Zen poets of Japan, who alerts us to the neglected...
    published: 28 Aug 2015
    Play in Full Screen
    3:59
    EASTERN PHILOSOPHY - Kintsugi
    ‘Kintsugi’ is the remarkable Japanese art of repairing broken pottery with elegance and gr...
    published: 12 Feb 2016
    Play in Full Screen
    5:55
    "🌿 Unlock Life's Secrets with Powerful Eastern Philosophy Quotes!"
    In this video, we explore powerful Eastern wisdom and Stoic philosophy to unlock the secre...
    published: 03 Jan 2025
    Play in Full Screen
    18:19
    Eastern Philosophy vs Western Philosophy
    Support the channel ► Donate A coffee: https://ko-fi.com/fictionbeast ► Join my Patreon: h...
    published: 15 Oct 2023
    Play in Full Screen

    Eastern philosophy

    Eastern philosophy includes the various philosophies of South and East Asia, including Chinese philosophy, Indian philosophy, Japanese philosophy. Sometimes Iranian/Persian philosophy can be considered as eastern philosophy. Broadly speaking the term can also sometimes include Babylonian philosophy, Jewish philosophy, and Islamic philosophy, though these may also be considered Western philosophies.

    Classification

    Eastern philosophy includes the various philosophies of Asia, including Indian philosophy, Chinese philosophy, Iranian philosophy, Japanese philosophy, Korean philosophy, Vietnamese philosophy, Arab philosophy, Mitwi philosophy, and Jewish philosophy. The division is not purely geographic but also stems from general hermeneutic and conceptual differences that lie between Eastern and Western traditions.

    Controversy

    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Who was Confucius? - Bryan W. Van Norden
      4:30
      Who was Confucius? - Bryan W. Van Nordenremove from playlist
    • EASTERN PHILOSOPHY - Confucius
      5:36
      EASTERN PHILOSOPHY - Confuciusremove from playlist
    • Confucius: The Sage Who Shaped The East | Confucius | Timeline
      1:28:58
      Confucius: The Sage Who Shaped The East | Confucius | Timelineremove from playlist
    • Confucius | The Art of Becoming Better (Self-Cultivation)
      14:03
      Confucius | The Art of Becoming Better (Self-Cultivation)remove from playlist
    • 10 Life Lessons From Confucius (Confucianism)
      18:21
      10 Life Lessons From Confucius (Confucianism)remove from playlist
    • CONFUCIUS : Wise Quotes That Will Transform Your Life | Strong Quotes, Chinese Wisdom
      5:24
      CONFUCIUS : Wise Quotes That Will Transform Your Life | Strong Quotes, Chinese Wisdomremove from playlist
    • Intro to Confucianism
      18:23
      Intro to Confucianismremove from playlist
    • History-Makers: Confucius
      9:37
      History-Makers: Confuciusremove from playlist
    • Confucius: The Real Man Behind The Legendary Ancient Philosopher | Confucius | Absolute History
      1:29:04
      Confucius: The Real Man Behind The Legendary Ancient Philosopher | Confucius | Absolute Historyremove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Who was Confucius? - Bryan W. Van Norden

    View full lesson: http://ed.ted.com/lessons/who-was-confucius-bryan-w-van-norden Most people recognize his name and know that he is famous for having said something, but considering the long-lasting impact his teachings have had on the world, very few people know who Confucius really was, what he really said... and why. Bryan W. Van Norden reveals the man behind the mystery. Lesson by Bryan W. Van Norden, animation by Tomás Pichardo-Espaillat.
    4:30
    Who was Confucius? - Bryan W. Van Norden
    View full lesson: http://ed.ted.com/lessons/who-was-confucius-bryan-w-van-norden Most peo...
    published: 27 Oct 2015
    Play in Full Screen
    5:36
    EASTERN PHILOSOPHY - Confucius
    This great Chinese philosopher believed in everything we ignore nowadays: tradition, insti...
    published: 06 Feb 2015
    Play in Full Screen
    1:28:58
    Confucius: The Sage Who Shaped The East | Confucius | Timeline
    Confucius is one of history's most influential men - a sage, philosopher and teacher - who...
    published: 04 Jul 2020
    Play in Full Screen
    14:03
    Confucius | The Art of Becoming Better (Self-Cultivation)
    Isn’t it the case we should always stay true to ourselves? Which means that we ought to kn...
    published: 05 Nov 2020
    Play in Full Screen
    18:21
    10 Life Lessons From Confucius (Confucianism)
    First 100 people to click on https://www.blinkist.com/philosophiesforlife will get a 7 day...
    published: 17 Dec 2019
    Play in Full Screen
    5:24
    CONFUCIUS : Wise Quotes That Will Transform Your Life | Strong Quotes, Chinese Wisdom
    Confucius was a Chinese philosopher, teacher, and political figure whose ideas and teachi...
    published: 12 Apr 2023
    Play in Full Screen
    18:23
    Intro to Confucianism
    Join our Patreon community!: https://www.patreon.com/religionforbreakfast One-time donatio...
    published: 08 Jul 2021
    Play in Full Screen
    9:37
    History-Makers: Confucius
    Welcome to the challenge run of History-Makers, where I attempt to give insightful histori...
    published: 19 Jun 2020
    Play in Full Screen
    0:14
    Motivation by Confucius 🧐 #viral #shorts #short #motivation
    Motivation by Confucius!
    published: 23 Jul 2023
    Play in Full Screen
    1:29:04
    Confucius: The Real Man Behind The Legendary Ancient Philosopher | Confucius | Absolute History
    Confucius is one of history's most influential men - a sage, philosopher and teacher - who...
    published: 24 Mar 2023
    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: eastern philosophy confucius

    Edit

    Chinese democracy a blend of traditional wisdom, innovation

    China Daily 16 Oct 2024
    Our discussion, titled the "Aristotle-Confucius Dialogue", explored the similarities and differences between Eastern and Western philosophies ... This philosophy manifests in modern China's educational and civil service systems.
    Edit

    Ancient Greek and Chinese Civilizations: Bridging Cultures and Knowledge

    Beijing Times 18 Sep 2023
    Comparing Western philosophy with Eastern counterparts, he identifies shared notions between thinkers like Confucius, Socrates, and Aristotle.
    Edit

    The Philosophy Behind Psycho-Pass

    Game Rant 15 Nov 2022
    ... and Confucius, whole schools of thought and followers of these philosophies have emerged.
    • 1

    Most Viewed

    ×