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

Alchemy

Alchemy is a philosophical and protoscientific tradition practiced throughout Egypt and Eurasia which aimed to purify, mature, and perfect certain objects. Common aims were chrysopoeia, the transmutation of "base metals" (e.g., lead) into "noble" ones (particularly gold); the creation of an elixir of immortality; the creation of panaceas able to cure any disease; and the development of an alkahest, a universal solvent. The perfection of the human body and soul was thought to permit or result from the alchemical magnum opus and, in the Hellenistic and western tradition, the achievement of gnosis. In Europe, the creation of a philosopher's stone was variously connected with all of these projects.

In English, the term is often limited to descriptions of European alchemy, but similar practices existed in the Far East, the Indian subcontinent, and the Muslim world. In Europe, following the 12th-century Renaissance produced by the translation of Arabic works on science and the Recovery of Aristotle, alchemists played a significant role in early modern science (particularly chemistry and medicine). Islamic and European alchemists developed a structure of basic laboratory techniques, theory, terminology, and experimental method, some of which are still in use today. However, they continued antiquity's belief in four elements and guarded their work in secrecy including cyphers and cryptic symbolism. Their work was guided by Hermetic principles related to magic, mythology, and religion.

Alchemy (novel)

Alchemy (released in 2004) is a novel for older children by the New Zealand author Margaret Mahy.

Plot summary

Roland, a 7th former who has been caught shoplifting, is given an unusual assignment: to spy on a mysterious girl in his class who is studying alchemy. Jess Ferret is an eccentric girl who likes playing with words. However, an enemy from the boy's past wants the girl's power and is using him for information. Roland eventually finds out that he is not unlike Jess and her abilities, but gets them both into a situation which endangers their lives.

Alchemy has similar themes to two other books by Mahy, The Changeover and The Haunting.

The book won the senior fiction section of the 2003 New Zealand Post Children's Book Awards.

References

  • Winners of Young Adult Fiction of New Zelanland Post Children's Book Awards

  • Alchemy and chemistry in medieval Islam

    Alchemy and chemistry in Islam refers to the study of both traditional alchemy and early practical chemistry (the early chemical investigation of nature in general) by scholars in the medieval Islamic world. The word alchemy was derived from the Persian word كيمياء or kīmiyāʾ. and may ultimately derive from the ancient Egyptian word kemi, meaning black.

    After the fall of the Western Roman Empire, the focus of alchemical development moved to the Caliphate and the Islamic civilization. Much more is known about Islamic alchemy as it was better documented; most of the earlier writings that have come down through the years were preserved as Arabic translations.

    Definition and relationship with medieval western sciences

    Podcasts:

    • Taylor Swift - The Alchemy (Official Lyric Video)

      Watch the official lyric video for “The Alchemy” by Taylor Swift, from ‘THE TORTURED POETS DEPARTMENT’ Buy/download/stream ‘THE TORTURED POETS DEPARTMENT’: https://taylor.lnk.to/thetorturedpoetsdepartment ►Subscribe to Taylor Swift on YouTube: https://ts.lnk.to/subscribe ►Shop Merch: http://taylor.lnk.to/store ►Follow Taylor Swift Online: TikTok: http://tiktok.com/@taylorswift Instagram: http://instagram.com/taylorswift Twitter: http://twitter.com/taylorswift13 Snapchat: http://snapchat.com/add/taylorswift Facebook: http://facebook.com/taylorswift Tumblr: http://taylorswift.tumblr.com Website: http://www.taylorswift.com ►Follow Taylor Nation Online TikTok: http://tiktok.com/@taylornation YouTube: https://youtube.com/taylornation Instagram: http://instagram.com/taylornation ...

      published: 20 Apr 2024
    • What is Alchemy?

      PATREON: https://www.patreon.com/generalistpapers My first video, make sure to tell me what you think! Follow me Twitter: https://twitter.com/HarrisonHolt2 https://www.instagram.com/harrysonofbob/​ Music by: Kevin McLeod #alchemy

      published: 18 Sep 2020
    • Alchemy EXPLAINED (Its Deepest Secret)

      Alchemy is at the very core of esotericism and mysticism, serving as a catalyst for our spiritual awakening. In this video, we get deep into what Alchemy truly represents and uncover its deepest secret. 🔥 Subscribe to my newsletter for announcements on my upcoming Alchemy Retreat and In Person events: https://www.thealchemist.community/newsletter At its core, Alchemy embodies the art of purification—a transformative process that reduces substances to their essence. Whether it’s refining our own psyche or transmuting metals, this ancient practice guides us through the Great Work towards achieving purity and enlightenment. The journey from lead to gold symbolizes not just physical transformation but also spiritual evolution. Learn about the history of Alchemy and how it serves as a pathway ...

      published: 10 Sep 2024
    • Alchemy: History of Science #10

      In fantasy stories, charlatans in fancy robes promise to turn lead into gold. But real alchemists weren’t just mystical misers. They were skilled experimentalists, backed by theories of matter. And they played a huge role in the development of knowledge about one of our fundamental questions: “what is stuff?” *** Crash Course is on Patreon! You can support us directly by signing up at http://www.patreon.com/crashcourse Thanks to the following Patrons for their generous monthly contributions that help keep Crash Course free for everyone forever: Mark Brouwer, Glenn Elliott, Justin Zingsheim, Jessica Wode, Eric Prestemon, Kathrin Benoit, Tom Trval, Jason Saslow, Nathan Taylor, Divonne Holmes à Court, Brian Thomas Gossett, Khaled El Shalakany, Indika Siriwardena, Robert Kunz, SR Foxley, ...

      published: 11 Jun 2018
    • Spiritual Alchemy - Esoteric Science of Ascension

      Alchemy has become a popular word in the spirit of the sage especially during a spiritual awakening process. In This video I am going to be explaining what alchemy means in its highest most spiritual sense of the term. 🔥Registration is now open for my 2023 Alchemy Retreat: https://www.thealchemist.community 🔥 Subscribe to my newsletter for announcements on my upcoming Alchemy Retreat and In Person events: https://www.thealchemist.community/newsletter 🔥 Subscribe to this Channel 🔥 https://www.youtube.com/channel/UCNQsW_JBuc5aYqLyct6M7mA 💫Book a remote energy healing session with me here: https://www.alchemicalenergyhealing.com/alchemical-energy-healing ✨ Connect with The Alchemist Community ✨ 🔥INSTAGRAM: https://www.instagram.com/the.alchemist/ 🌟TIKTOK: https://vm.tiktok.com/ZMRb67x...

      published: 14 Feb 2023
    • Alchemy's BEST KEPT SECRET Revealed

      Unlock the hidden mysteries of alchemy in this journey into ancient secrets. Discover the truth behind the Philosopher's Stone, mystical symbols, and the power of transformation. What lies beyond the veil of this forbidden knowledge? Alchemical Active Imagination: https://amzn.to/3OBSt9i The Emerald Tablet: Alchemy of Personal Transformation: https://amzn.to/4g0pkAL Read my NEW books here: https://amzn.to/4fJztSQ Listen to my audiobook: https://amzn.to/3BPabTM Follow my Podcast on Spotify: https://open.spotify.com/show/3qYG2pkNExWzs60Xwnz7cM Get access to members videos by supporting at https://www.patreon.com/morgueofficial More ways to support: Get MERCH at https://www.morgueofficial.com Follow Morgue: ⇀ Facebook: https://www.facebook.com/MorgueOfficial/ ⇀ Instagram: https://...

      published: 03 Dec 2024
    • What is the Philosophers Stone? Introduction to Alchemy - History of Alchemical Theory & Practice

      The Philosophers' Stone of Alchemy is truly the stuff of legend. It is said to have the power to transmute lead to gold, heal sickness, prolong life - even allow one to speak with angels. But what is the origin and nature of this marvelous alchemical stone? How was it produced? In this episode, I explore the origins, history and the process by which the stone of the philosophers is said to be produced. #alchemy #occult #chemistry #hermeticism Make Sure to Subscribe & Consider supporting Esoterica by becoming a monthly Patron - https://www.patreon.com/esotericachannel a one time donation - https://www.paypal.me/esotericachannel or the Super Thanks - Your support is profoundly appreciated! Recommended Readings Linden, Stanton J. (ed.) The Alchemy Reader: From Hermes Trismegistus...

      published: 02 Dec 2022
    • Introduction to Alchemy

      Avery will be teaching at The Brisbane Powerhouse in Queensland Australia October 5-6, 2018. For more information please visit: https://www.kymiaarts.com/apprentice.html As we appreciate your comments and questions please direct them to the link below in order to ensure a timely response: https://www.kymiaarts.com/contact.html Website: https://www.kymiaarts.com Facebook: https://www.facebook.com/kymiaarts/ Instagram: https://www.instagram.com/kymiaarts/

      published: 21 Sep 2016
    • Alchemy of Peace: Master’s Class

      Join us for this bonus webinar to our Alchemy of Peace Series. We are opening up the classroom space to all of those who resonate with being a Master of their own Energy and Light. We will share our stories and accomplishments with the Alchemy of Peace: Wisdom Series, and perhaps revisit some things along the way! We will also learn to access the field of Highest Potentials, and begin to allow in a whole new creation, as we move into the New Year! 2025 is a time to be complete with the clearing work, and move into conscious creation! Let's finalize this step, so that we may move into a new year, and a new creation!!!

      published: 01 Jan 2025
    • Taylor Swift - The Alchemy (Lyrics)

      Subscribe and press (🔔) to join the Notification Squad and stay updated with new uploads Follow Taylor Swift: http://snapchat.com/add/taylorswift http://twitter.com/taylorswift13 Taylor Swift - The Alchemy 📷 Wallpaper: https://unsplash.com ©️If any producer or label has an issue with this song or picture, please get in contact with us and we will delete it immediately. Lyrics: [Verse 1] This happens once every few lifetimes These chemicals hit me like white wine What if I told you I'm back? The hospital was a drag Worst sleep that I ever had I circled you on a map I haven't come around in so long But I'm coming back so strong [Chorus] So when I touch down Call the amateurs and cut 'em from the team Ditch the clowns, get the crown Baby, I'm the one to beat 'Cause the sign on your he...

      published: 20 Apr 2024
    Taylor Swift - The Alchemy (Official Lyric Video)
    3:22

    Taylor Swift - The Alchemy (Official Lyric Video)

    • Order:
    • Duration: 3:22
    • Uploaded Date: 20 Apr 2024
    • views: 12761018
    Watch the official lyric video for “The Alchemy” by Taylor Swift, from ‘THE TORTURED POETS DEPARTMENT’ Buy/download/stream ‘THE TORTURED POETS DEPARTMENT’: https://taylor.lnk.to/thetorturedpoetsdepartment ►Subscribe to Taylor Swift on YouTube: https://ts.lnk.to/subscribe ►Shop Merch: http://taylor.lnk.to/store ►Follow Taylor Swift Online: TikTok: http://tiktok.com/@taylorswift Instagram: http://instagram.com/taylorswift Twitter: http://twitter.com/taylorswift13 Snapchat: http://snapchat.com/add/taylorswift Facebook: http://facebook.com/taylorswift Tumblr: http://taylorswift.tumblr.com Website: http://www.taylorswift.com ►Follow Taylor Nation Online TikTok: http://tiktok.com/@taylornation YouTube: https://youtube.com/taylornation Instagram: http://instagram.com/taylornation Twitter: http://twitter.com/taylornation13 Tumblr: http://taylornation.tumblr.com #taylorswift #thetorturedpoetsdepartment
    https://wn.com/Taylor_Swift_The_Alchemy_(Official_Lyric_Video)
    What is Alchemy?
    7:24

    What is Alchemy?

    • Order:
    • Duration: 7:24
    • Uploaded Date: 18 Sep 2020
    • views: 265645
    PATREON: https://www.patreon.com/generalistpapers My first video, make sure to tell me what you think! Follow me Twitter: https://twitter.com/HarrisonHolt2 https://www.instagram.com/harrysonofbob/​ Music by: Kevin McLeod #alchemy
    https://wn.com/What_Is_Alchemy
    Alchemy EXPLAINED (Its Deepest Secret)
    25:20

    Alchemy EXPLAINED (Its Deepest Secret)

    • Order:
    • Duration: 25:20
    • Uploaded Date: 10 Sep 2024
    • views: 40817
    Alchemy is at the very core of esotericism and mysticism, serving as a catalyst for our spiritual awakening. In this video, we get deep into what Alchemy truly represents and uncover its deepest secret. 🔥 Subscribe to my newsletter for announcements on my upcoming Alchemy Retreat and In Person events: https://www.thealchemist.community/newsletter At its core, Alchemy embodies the art of purification—a transformative process that reduces substances to their essence. Whether it’s refining our own psyche or transmuting metals, this ancient practice guides us through the Great Work towards achieving purity and enlightenment. The journey from lead to gold symbolizes not just physical transformation but also spiritual evolution. Learn about the history of Alchemy and how it serves as a pathway for personal growth and self-discovery through transmutation. Chapters: 00:00 Introduction 00:40 What is Alchemy? 02:53 Understanding Spirit and Fire 04:19 The Deeper Meaning of Alchemy 07:38 The Art of Salvation 09:10 Historical Context of Alchemy 10:21 Deepest Secret of Alchemy 12:05 Christ Consciousness 13:34 The Process of Transmutation 15:41 The Quintessence 17:25 Alchemy Throughout the World 21:19 Consciousness and Reality 23:18 Modern Practices of Alchemy 25:00 Conclusion #Alchemy #Alchemist #Spirituality 💫Book a remote energy healing session with me here: https://www.alchemicalenergyhealing.com/alchemical-energy-healing ✨ Connect with The Alchemist Community ✨ 🔥INSTAGRAM: https://www.instagram.com/the.alchemist 💎WEBSITE: https://www.thealchemist.community 🔮FACEBOOK: https://www.facebook.com/official.the.alchemist Copyright Notice: You do not have permission to reuse this content as your own throughout all the universe. The Alchemist © 2024.
    https://wn.com/Alchemy_Explained_(Its_Deepest_Secret)
    Alchemy: History of Science #10
    12:50

    Alchemy: History of Science #10

    • Order:
    • Duration: 12:50
    • Uploaded Date: 11 Jun 2018
    • views: 983967
    In fantasy stories, charlatans in fancy robes promise to turn lead into gold. But real alchemists weren’t just mystical misers. They were skilled experimentalists, backed by theories of matter. And they played a huge role in the development of knowledge about one of our fundamental questions: “what is stuff?” *** Crash Course is on Patreon! You can support us directly by signing up at http://www.patreon.com/crashcourse Thanks to the following Patrons for their generous monthly contributions that help keep Crash Course free for everyone forever: Mark Brouwer, Glenn Elliott, Justin Zingsheim, Jessica Wode, Eric Prestemon, Kathrin Benoit, Tom Trval, Jason Saslow, Nathan Taylor, Divonne Holmes à Court, Brian Thomas Gossett, Khaled El Shalakany, Indika Siriwardena, Robert Kunz, SR Foxley, Sam Ferguson, Yasenia Cruz, Eric Koslow, Caleb Weeks, Tim Curwick, Evren Türkmenoğlu, Alexander Tamas, D.A. Noe, Shawn Arnold, mark austin, Ruth Perez, Malcolm Callis, Ken Penttinen, Advait Shinde, Cody Carpenter, Annamaria Herrera, William McGraw, Bader AlGhamdi, Vaso, Melissa Briski, Joey Quek, Andrei Krishkevich, Rachel Bright, Alex S, Mayumi Maeda, Kathy & Tim Philip, Montather, Jirat, Eric Kitchen, Moritz Schmidt, Ian Dundore, Chris Peters, Sandra Aft, Steve Marshall -- Want to find Crash Course elsewhere on the internet? Facebook - http://www.facebook.com/YouTubeCrashCourse Twitter - http://www.twitter.com/TheCrashCourse Tumblr - http://thecrashcourse.tumblr.com Support Crash Course on Patreon: http://patreon.com/crashcourse CC Kids: http://www.youtube.com/crashcoursekids
    https://wn.com/Alchemy_History_Of_Science_10
    Spiritual Alchemy - Esoteric Science of Ascension
    19:31

    Spiritual Alchemy - Esoteric Science of Ascension

    • Order:
    • Duration: 19:31
    • Uploaded Date: 14 Feb 2023
    • views: 66910
    Alchemy has become a popular word in the spirit of the sage especially during a spiritual awakening process. In This video I am going to be explaining what alchemy means in its highest most spiritual sense of the term. 🔥Registration is now open for my 2023 Alchemy Retreat: https://www.thealchemist.community 🔥 Subscribe to my newsletter for announcements on my upcoming Alchemy Retreat and In Person events: https://www.thealchemist.community/newsletter 🔥 Subscribe to this Channel 🔥 https://www.youtube.com/channel/UCNQsW_JBuc5aYqLyct6M7mA 💫Book a remote energy healing session with me here: https://www.alchemicalenergyhealing.com/alchemical-energy-healing ✨ Connect with The Alchemist Community ✨ 🔥INSTAGRAM: https://www.instagram.com/the.alchemist/ 🌟TIKTOK: https://vm.tiktok.com/ZMRb67x8j/ 💎WEBSITE: https://www.thealchemist.community/ 🔮FACEBOOK: https://www.facebook.com/official.the.alchemist/ Copyright Notice: You do not have permission to reuse this content as your own throughout all the universe. The Alchemist © 2024.
    https://wn.com/Spiritual_Alchemy_Esoteric_Science_Of_Ascension
    Alchemy's BEST KEPT SECRET Revealed
    1:11:39

    Alchemy's BEST KEPT SECRET Revealed

    • Order:
    • Duration: 1:11:39
    • Uploaded Date: 03 Dec 2024
    • views: 10058
    Unlock the hidden mysteries of alchemy in this journey into ancient secrets. Discover the truth behind the Philosopher's Stone, mystical symbols, and the power of transformation. What lies beyond the veil of this forbidden knowledge? Alchemical Active Imagination: https://amzn.to/3OBSt9i The Emerald Tablet: Alchemy of Personal Transformation: https://amzn.to/4g0pkAL Read my NEW books here: https://amzn.to/4fJztSQ Listen to my audiobook: https://amzn.to/3BPabTM Follow my Podcast on Spotify: https://open.spotify.com/show/3qYG2pkNExWzs60Xwnz7cM Get access to members videos by supporting at https://www.patreon.com/morgueofficial More ways to support: Get MERCH at https://www.morgueofficial.com Follow Morgue: ⇀ Facebook: https://www.facebook.com/MorgueOfficial/ ⇀ Instagram: https://www.instagram.com/MorgueOfficial/ ⇀ Twitter: https://twitter.com/MorgueOfficial #alchemy #hermetic #hiddenknowledge #curses #soul #occult #magick #christconsciousness #enlightenment #spirituality
    https://wn.com/Alchemy's_Best_Kept_Secret_Revealed
    What is the Philosophers Stone?  Introduction to Alchemy - History of Alchemical Theory & Practice
    36:58

    What is the Philosophers Stone? Introduction to Alchemy - History of Alchemical Theory & Practice

    • Order:
    • Duration: 36:58
    • Uploaded Date: 02 Dec 2022
    • views: 230449
    The Philosophers' Stone of Alchemy is truly the stuff of legend. It is said to have the power to transmute lead to gold, heal sickness, prolong life - even allow one to speak with angels. But what is the origin and nature of this marvelous alchemical stone? How was it produced? In this episode, I explore the origins, history and the process by which the stone of the philosophers is said to be produced. #alchemy #occult #chemistry #hermeticism Make Sure to Subscribe & Consider supporting Esoterica by becoming a monthly Patron - https://www.patreon.com/esotericachannel a one time donation - https://www.paypal.me/esotericachannel or the Super Thanks - Your support is profoundly appreciated! Recommended Readings Linden, Stanton J. (ed.) The Alchemy Reader: From Hermes Trismegistus to Isaac Newton. 978-0521796620. Nicely edited collection of alchemical primary texts. Moran, Bruce. Distilling Knowledge: Alchemy, Chemistry, and the Scientific Revolution. 978-0674022492. Great text on the transition from alchemy to chemistry. Principe, Lawrence. The Secrets of Alchemy. 978-0226103792. An up-to-date history of alchemy. Newman, William. Newton the Alchemist: Science, Enigma, and the Quest for Nature's "Secret Fire" 978-0691174877. Cutting edge research on alchemy in the 17th century. Roob, Alexander(ed.) Alchemy & Mysticism. 978-3836549363. A collection of alchemical imagery and symbolism, also a nice coffee table book! Anything by Principe and Newman generally
    https://wn.com/What_Is_The_Philosophers_Stone_Introduction_To_Alchemy_History_Of_Alchemical_Theory_Practice
    Introduction to Alchemy
    18:17

    Introduction to Alchemy

    • Order:
    • Duration: 18:17
    • Uploaded Date: 21 Sep 2016
    • views: 1403134
    Avery will be teaching at The Brisbane Powerhouse in Queensland Australia October 5-6, 2018. For more information please visit: https://www.kymiaarts.com/apprentice.html As we appreciate your comments and questions please direct them to the link below in order to ensure a timely response: https://www.kymiaarts.com/contact.html Website: https://www.kymiaarts.com Facebook: https://www.facebook.com/kymiaarts/ Instagram: https://www.instagram.com/kymiaarts/
    https://wn.com/Introduction_To_Alchemy
    Alchemy of Peace: Master’s Class
    1:17:53

    Alchemy of Peace: Master’s Class

    • Order:
    • Duration: 1:17:53
    • Uploaded Date: 01 Jan 2025
    • views: 223
    Join us for this bonus webinar to our Alchemy of Peace Series. We are opening up the classroom space to all of those who resonate with being a Master of their own Energy and Light. We will share our stories and accomplishments with the Alchemy of Peace: Wisdom Series, and perhaps revisit some things along the way! We will also learn to access the field of Highest Potentials, and begin to allow in a whole new creation, as we move into the New Year! 2025 is a time to be complete with the clearing work, and move into conscious creation! Let's finalize this step, so that we may move into a new year, and a new creation!!!
    https://wn.com/Alchemy_Of_Peace_Master’S_Class
    Taylor Swift - The Alchemy (Lyrics)
    3:17

    Taylor Swift - The Alchemy (Lyrics)

    • Order:
    • Duration: 3:17
    • Uploaded Date: 20 Apr 2024
    • views: 476239
    Subscribe and press (🔔) to join the Notification Squad and stay updated with new uploads Follow Taylor Swift: http://snapchat.com/add/taylorswift http://twitter.com/taylorswift13 Taylor Swift - The Alchemy 📷 Wallpaper: https://unsplash.com ©️If any producer or label has an issue with this song or picture, please get in contact with us and we will delete it immediately. Lyrics: [Verse 1] This happens once every few lifetimes These chemicals hit me like white wine What if I told you I'm back? The hospital was a drag Worst sleep that I ever had I circled you on a map I haven't come around in so long But I'm coming back so strong [Chorus] So when I touch down Call the amateurs and cut 'em from the team Ditch the clowns, get the crown Baby, I'm the one to beat 'Cause the sign on your heart Said it's still reserved for me Honestly, who are we to fight the alchemy? [Verse 2] Hey, you, what if I told you we're cool? That child's play back in school Is forgiven under my rule I haven't come around in so long But I'm making a comeback to where I belong [Chorus] So when I touch down Call the amateurs and cut 'em from the team Ditch the clowns, get the crown Baby, I'm the one to beat 'Cause the sign on your heart Said it's still reserved for me Honestly, who are we to fight the alchemy? These blokes warm the benches We've been on a winning streak He jokes that it's heroin, but this time with an "E" 'Cause the sign on your heart Said it's still reserved for me Honestly, who are we to fight the alchemy? [Bridge] Shirts off and your friends lift you up over their heads Beer stickin' to the floor, cheers chanted 'cause they said "There was no chance trying to be the greatest in the league" Where's the trophy? He just comes runnin' over to me [Chorus] Touchdown Call the amateurs and cut 'em from the team Ditch the clowns, get the crown Baby, I'm the one to beat 'Cause the sign on your heart Said it's still reserved for me Honestly, who are we to fight the alchemy? These blokes warm the benches We've been on a winning streak He jokes that it's heroin, but this time with an "E" 'Cause the sign on your heart Said it's still reserved for me Honestly, who are we to fight the alchemy? [Outro] This happens once every few lifetimes These chemicals hit me like white wine Tags: Taylor Swift, The Alchemy, Taylor Swift The Alchemy, The Alchemy Taylor Swift, Lyrics, Lyrics The Alchemy, Taylor Swift The Alchemy Lyrics, The Alchemy Taylor Swift Lyrics, Taylor Swift Lyrics, The Alchemy Lyrics Taylor Swift, Lyrics Taylor Swift The Alchemy, Lyrics The Alchemy Taylor Swift
    https://wn.com/Taylor_Swift_The_Alchemy_(Lyrics)
    • ACTUAL MAGICIAN recommends 5 ALCHEMY Books for BEGINNERS #books #occult

      For more in-depth occult advice & recommendations from an actual magician of 45 years experience, check out @MarcusKatzAuthor.

      published: 08 Jan 2024
    • The Alchemist, by Paulo Coelho - Animated Book Summary

      Welcome to this Animated Book Summary of The Alchemist, by Paulo Coelho. This video will provide you with 12 Key Takeaways from this fantastic book. Time Stamps: 00:01 Introduction 01:19 Lesson 1: There is power in committing to your path. 01:54 Lesson 2: Don't let others choose your path for you. 02:22 Lesson 3: Don't believe the world's greatest lie. 02:51 Lesson 4: When life knocks you down, stay positive and keep moving forward. 03:46 Lesson 5: Don't let yourself be fooled. 04:17 Lesson 6: Be bold and make decisions. 05:03 Lesson 7: Embrace the NOW. 05:40 Lesson 8: Don't focus on the result; focus on the process. 06:09 Lesson 9: Don't let the fear of failure keep you from pursuing your dreams. 06:57 Lesson 10: When you make yourself better, you make the world better. 07:23 Lesson 11: ...

      published: 28 Oct 2020
    • Alchemy - Where to Begin - Introduction to the Summa Perfectionis (Sum of Perfection) Pseudo-Geber

      Alchemy is one of the most difficult fields of study in Western Esotericism for a host of reasons: texts are often in ancient languages, practically encoded, full of arcane symbolism and obscure instructions. One of the most daunting tasks is even where to begin. There are thousands of alchemical texts spread over 1500 years - which is the best starting point if you want to study alchemy? In this episode of Esoterica, we argue that the Summa Perfectionis (c. 1310) is the best answer. We explore the question of the text's authorship, transmission, composition, alchemical theory of substance, change, and, of course, metallic transmutation. Recommended Readings Newman - The Summa Perfectionis of Pseudo-Geber: A Critical Edition, Translation, and Study - 978-9004094642 (ILL this one) Su...

      published: 09 Oct 2020
    • The Alchemist Video Summary

      Visit us at https://www.gradesaver.com/the-alchemist-coelho/study-guide/video to read the full video transcript and our study guide for this novel, which includes a full list of characters, themes, and much more. The Alchemist, by Paulo Coelho, is a story about a young shepherd named Santiago who is able to find a treasure beyond his wildest dreams and feelings of self-doubt. In this fable, the author uses magical realism to portray Santiago’s physical and spiritual journey, as he learns to listen to his heart and realizes that his aspirations belong not only to him but to the universe as well. Living in Andalusia, Spain, Santiago is a humble shepherd who wants only to roam with his sheep, enjoy wine, and read a good book. Fate intervenes, however, in the form of a recurring dream about...

      published: 17 Jun 2020
    • The Alchemist | Summary & Analysis | Paulo Coelho

      Summarize videos instantly with our Course Assistant plugin, and enjoy AI-generated quizzes: https://bit.ly/ch-ai-asst Course Hero’s video study guide provides in-depth summary of Paulo Coelho's novel The Alchemist. Download the free study guide and infographic for Paulo Coelho’s The Alchemist here: https://www.coursehero.com/lit/The-Alchemist/ Explore Course Hero’s collection of free literature study guides, Q&A pairs, and infographics here: https://www.coursehero.com/lit/ About Course Hero: Course Hero helps empower students and educators to succeed! We’re fueled by a passionate community of students and educators who share their course-specific knowledge and resources to help others learn. Learn more at http://www.coursehero.com. Master Your Classes™ with Course Hero! Get the lat...

      published: 13 Dec 2017
    • Money Alchemy: If You Master It, Money Will Flow To You (Audiobook)

      📖 Get the e-book here: 👉 https://audiobooksoffice.com/products/money-alchemy-once-you-master-it-money-will-flow-to-you 📖 Get Journals Here ✨ https://audiobooksoffice.com/collections/journal Money alchemy, wealth flow, audiobook, mastering wealth, financial abundance, transforming mindset, personal finance, attracting money, prosperity, financial success. Money Alchemy: If You Master It, Money Will Flow to You is an innovative audiobook that delves into the transformative techniques of money alchemy, a method that changes one’s financial perspective to attract and maintain wealth. This guide explores how shifting your mindset can create a continuous flow of financial abundance. Ideal for individuals seeking to overcome financial stagnation and invoke an era of monetary prosperity, th...

      published: 09 Jun 2024
    • The Alchemist | By Paulo Coelho | Part 1 | Effortless English Book Club

      The Alchemist | By Paulo Coelho | Part 1 | Effortless English Book Club

      published: 14 Oct 2018
    • The Book Of Lambspring - An Esoteric Alchemical Manuscript - Full Alchemy Audiobook

      The Book Of Lambspring - An Esoteric Alchemical Manuscript - Full Alchemy Audiobook. This is a well known work which was first published by Nicholas Barnaud in 1599. It consisted of a series of 15 verses outlining the alchemical process. It was later issued by Lucas Jennis as part of Dyas chymica tripartita, 1625, and this was illustrated with a series of 15 engravings, together with a symbolic coat-of-arms and a frontispiece. The book avoids complicated allegorical symbols found in other alchemical treatises, and the images are rather plain, symbolizing opposition, struggle and overcoming. The emblems deal with the art of alchemy with the aim of creating the philosopher's stone, which can be used to transform metals and obtain a universal medicine (panacea). Please consider supporting my ...

      published: 10 Mar 2022
    • The Alchemist by Paulo Coelho Book Review

      The Alchemist: A Journey to Self-Discovery Join us as we delve into the timeless classic, The Alchemist by Paulo Coelho. In this captivating tale of self-discovery and personal growth, we follow Santiago, a shepherd boy on a quest to fulfill his dreams. Discover the profound lessons hidden within the pages of this philosophical novel, including: • The Personal Legend: Understanding your unique purpose and following your heart. • The Language of the World: Learning to listen to the signs and symbols that guide your path. • The Soul of the World: Connecting with the universal energy that connects all things. Whether you're a seasoned reader or new to Coelho's work, this podcast/video will provide insightful commentary and thought-provoking discussions. Tune in to discover the tr...

      published: 16 Nov 2024
    • Alchemy & Martial Supreme Episodes 1 audiobook full novel

      Alchemy & Martial Supreme audiobook novel https://www.youtube.com/playlist?list=PLKmZj8o0IiTFXGn2f42my7SugQJx5ItJg Qin Ming, fueled by unwavering determination, dedicated himself to nurturing the revered physique of the legendary Pill God. Yet, in the pivotal juncture of his journey, he suffered betrayal from someone closest to him. In this new chapter of his life, he aspires not only to attain the status of a Pill God but also to emerge as an unparalleled warrior.

      published: 06 Dec 2023
    ACTUAL MAGICIAN recommends 5 ALCHEMY Books for BEGINNERS #books #occult
    0:34

    ACTUAL MAGICIAN recommends 5 ALCHEMY Books for BEGINNERS #books #occult

    • Order:
    • Duration: 0:34
    • Uploaded Date: 08 Jan 2024
    • views: 312
    For more in-depth occult advice & recommendations from an actual magician of 45 years experience, check out @MarcusKatzAuthor.
    https://wn.com/Actual_Magician_Recommends_5_Alchemy_Books_For_Beginners_Books_Occult
    The Alchemist, by Paulo Coelho - Animated Book Summary
    8:34

    The Alchemist, by Paulo Coelho - Animated Book Summary

    • Order:
    • Duration: 8:34
    • Uploaded Date: 28 Oct 2020
    • views: 68561
    Welcome to this Animated Book Summary of The Alchemist, by Paulo Coelho. This video will provide you with 12 Key Takeaways from this fantastic book. Time Stamps: 00:01 Introduction 01:19 Lesson 1: There is power in committing to your path. 01:54 Lesson 2: Don't let others choose your path for you. 02:22 Lesson 3: Don't believe the world's greatest lie. 02:51 Lesson 4: When life knocks you down, stay positive and keep moving forward. 03:46 Lesson 5: Don't let yourself be fooled. 04:17 Lesson 6: Be bold and make decisions. 05:03 Lesson 7: Embrace the NOW. 05:40 Lesson 8: Don't focus on the result; focus on the process. 06:09 Lesson 9: Don't let the fear of failure keep you from pursuing your dreams. 06:57 Lesson 10: When you make yourself better, you make the world better. 07:23 Lesson 11: Allow yourself to dream. 07:51 Lesson 12: Practice gratitude. 08:20 Outro So, what can The Alchemist, by Paulo Coelho do for you? Well, are you living the life you truly want to live? Are you on the path that you know, deep down, you should be on, or do you feel like maybe you’re not exactly living out your dream? Well, The Alchemist, by Paulo Coelho is a fantastic book for you. Join us as we cover twelve (12) lessons from this beautiful and inspirational book, which has been one of the best-selling personal development books for years... and it’s one of the favorite books of successful people everywhere. Interestingly, it’s the favorite book of the one and only, fresh prince himself, WILL SMITH. It's also a favorite of Oprah Winfrey. As you probably guessed, I have created an outline for this book, which you can access for free on Google Drive here: https://drive.google.com/file/d/1jJ0gQML2qA9B_Mr18CRJ5lRHSJvV7Bvg/view?usp=sharing Thank you for watching, and please . . . if you enjoyed this . . . like and subscribe . . . and let me know what books you’d like to see animated next. #PersonalDevelopment #Growth #SelfHelp
    https://wn.com/The_Alchemist,_By_Paulo_Coelho_Animated_Book_Summary
    Alchemy - Where to Begin - Introduction to the Summa Perfectionis (Sum of Perfection) Pseudo-Geber
    42:13

    Alchemy - Where to Begin - Introduction to the Summa Perfectionis (Sum of Perfection) Pseudo-Geber

    • Order:
    • Duration: 42:13
    • Uploaded Date: 09 Oct 2020
    • views: 637928
    Alchemy is one of the most difficult fields of study in Western Esotericism for a host of reasons: texts are often in ancient languages, practically encoded, full of arcane symbolism and obscure instructions. One of the most daunting tasks is even where to begin. There are thousands of alchemical texts spread over 1500 years - which is the best starting point if you want to study alchemy? In this episode of Esoterica, we argue that the Summa Perfectionis (c. 1310) is the best answer. We explore the question of the text's authorship, transmission, composition, alchemical theory of substance, change, and, of course, metallic transmutation. Recommended Readings Newman - The Summa Perfectionis of Pseudo-Geber: A Critical Edition, Translation, and Study - 978-9004094642 (ILL this one) Summa Perfectionis (Latin Reprint of 1542 edition) - 978-0282332815 - read online - https://archive.org/details/geberisphilosoph00gebe/mode/2up Works of Geber (including the Summa Perfectionis) (English translation of 1678 reprinted in 1928) 978-1162568676 - read online - https://archive.org/details/WorksOfGeber/mode/2up Other Readings: Linden, Stanton J. (ed.) The Alchemy Reader: From Hermes Trismegistus to Isaac Newton. 978-0521796620. Nicely edited collection of alchemical primary texts. Principe, Lawrence. The Secrets of Alchemy. 978-0226103792. An up-to-date history of alchemy. Newman, William. Newton the Alchemist: Science, Enigma, and the Quest for Nature's "Secret Fire" 978-0691174877. Cutting edge research on alchemy in the 17th century. Roob, Alexander(ed.) Alchemy & Mysticism. 978-3836549363. A collection of alchemical imagery and symbolism, also a nice coffee table book! Spiritual / Psychology School of Interpretation Atwood, Mary Anne. A Suggestive Inquiry into the Hermetic Mystery….(many re-print editions). The first text to introduce the ‘spiritual interpretation” of alchemy. Eliade, Mircea. The Forge and the Crucible: The Origins and Structure of Alchemy. 978-0226203904. Religious-philosophical interpretation of alchemy. von Franz, Marie-Louise. Alchemy: An Introduction to the Symbolism and the Psychology. 978-0919123045. An introduction to the Jungian psychological interpretation of alchemy. #alchemy #geber #hermeticism #occult #chemistry
    https://wn.com/Alchemy_Where_To_Begin_Introduction_To_The_Summa_Perfectionis_(Sum_Of_Perfection)_Pseudo_Geber
    The Alchemist Video Summary
    7:19

    The Alchemist Video Summary

    • Order:
    • Duration: 7:19
    • Uploaded Date: 17 Jun 2020
    • views: 543866
    Visit us at https://www.gradesaver.com/the-alchemist-coelho/study-guide/video to read the full video transcript and our study guide for this novel, which includes a full list of characters, themes, and much more. The Alchemist, by Paulo Coelho, is a story about a young shepherd named Santiago who is able to find a treasure beyond his wildest dreams and feelings of self-doubt. In this fable, the author uses magical realism to portray Santiago’s physical and spiritual journey, as he learns to listen to his heart and realizes that his aspirations belong not only to him but to the universe as well. Living in Andalusia, Spain, Santiago is a humble shepherd who wants only to roam with his sheep, enjoy wine, and read a good book. Fate intervenes, however, in the form of a recurring dream about a great treasure hidden at the base of the Egyptian Pyramids. Santiago meets Melchizedek, a strange wise man and king from a far-off land. Melchizedek appears to those who are seeking their Personal Legend, or deepest life-long goal. This ambition comes from the Soul of the World which conspires to help everyone reach their deepest desire. Unfortunately, fear and routine often get in the way. Soon, Santiago decides to sell his flock and seek his treasure. Melchizedek gives Santiago two stones, a black stone called Urim, meaning "yes," and a white stone called Thummim, meaning "no.” Santiago is to consult these if he cannot understand the omens. He sets sail for Africa to seek his treasure and “Personal Legend.” Santiago’s first day in Tangiers, Morocco, he is robbed and left completely alone. Unable to speak a single word of Arabic, Santiago contemplates giving up and turning around. But he remembers the words of the wise man and carries on. Eventually, he finds work at a crystal shop for one year, where he earns enough money to buy a new flock of sheep and return home. Instead, he joins a caravan crossing the desert to Egypt, thus moving closer to his dream. On the caravan, Santiago meets an Englishman who has come all the way to Africa to seek a renowned alchemist. His new travel companion carries two stones just like Santiago’s and believes it is not accidental that the two of them have met. Santiago finds the Englishman's ideas to be similar to Melchizedek's. They both speak of a Soul of the World to which we are all connected. The Englishman also reveals that the goal of alchemy is the “Master Work,” which includes a liquid called the Elixir of Life and a solid called the Philosopher’s Stone. When they finally arrive at the Al-Fayoum oasis—the home of the titular Alchemist—Santiago meets a beautiful girl named Fatima with whom he immediately falls in love. He soon discovers that love, like the Personal Legend, comes directly from the Soul of the World. While walking in the desert, Santiago has a vision of an upcoming battle. He rushes back to warn the elders at the oasis. The next day, 500 armed tribesmen enter the oasis as Santiago has predicted. The men, duly warned, kill all of the intruders. The chieftain of the oasis awards Santiago 50 pieces of gold and offers him a position as a counselor. Santiago considers staying at the oasis with his new-found love Fatima, instead of seeking the Pyramids. Fatima, however, tells Santiago that she understands his need to realize his goal. The women of the desert, she explains, are proud of their men's freedom. This confuses Santiago, who is unable to separate love and possession. The Alchemist finds Santiago and tells him that he will lead him to his treasure. While on the move, the Alchemist teaches Santiago that hearts can be treacherous, but the best way to keep them from fooling you is to listen to them intently; one must listen to the Soul of the world to find one’s treasure. Everything on earth, even minerals, has a Personal Legend. This is why alchemists can change any metal into gold: they are simply helping the metal achieve its Personal Legend. When the two travelers are taken prisoner by a warring tribe, the Alchemist—in an effort to save their lives--claims that Santiago is a magician who can turn himself into wind. Santiago has no idea what he is doing, but eventually starts to pray with acknowledgement that his heart and the Soul of the World are one. Immediately, the wind whips up, and Santiago disappears and reappears on the other side of the camp. The tribal chiefs are so impressed that they let the travelers go. The next day, the men arrive at a monastery. The Alchemist uses his piece of the Philosopher's Stone to turn lead into a quantity of gold and gives some to Santiago and some to a monk. Santiago continues on to the Pyramids alone. There he is overwhelmed with joy realizing he can turn back now—that the real treasure is not gold or jewels, but the wisdom he has gained from his journey and his love for Fatima. His heart tells him to dig in a spot where he sees a scarab beetle.
    https://wn.com/The_Alchemist_Video_Summary
    The Alchemist  | Summary & Analysis | Paulo Coelho
    6:42

    The Alchemist | Summary & Analysis | Paulo Coelho

    • Order:
    • Duration: 6:42
    • Uploaded Date: 13 Dec 2017
    • views: 364725
    Summarize videos instantly with our Course Assistant plugin, and enjoy AI-generated quizzes: https://bit.ly/ch-ai-asst Course Hero’s video study guide provides in-depth summary of Paulo Coelho's novel The Alchemist. Download the free study guide and infographic for Paulo Coelho’s The Alchemist here: https://www.coursehero.com/lit/The-Alchemist/ Explore Course Hero’s collection of free literature study guides, Q&A pairs, and infographics here: https://www.coursehero.com/lit/ About Course Hero: Course Hero helps empower students and educators to succeed! We’re fueled by a passionate community of students and educators who share their course-specific knowledge and resources to help others learn. Learn more at http://www.coursehero.com. Master Your Classes™ with Course Hero! Get the latest updates: Facebook: https://www.facebook.com/coursehero Twitter: https://twitter.com/coursehero
    https://wn.com/The_Alchemist_|_Summary_Analysis_|_Paulo_Coelho
    Money Alchemy: If You Master It, Money Will Flow To You (Audiobook)
    54:34

    Money Alchemy: If You Master It, Money Will Flow To You (Audiobook)

    • Order:
    • Duration: 54:34
    • Uploaded Date: 09 Jun 2024
    • views: 14639
    📖 Get the e-book here: 👉 https://audiobooksoffice.com/products/money-alchemy-once-you-master-it-money-will-flow-to-you 📖 Get Journals Here ✨ https://audiobooksoffice.com/collections/journal Money alchemy, wealth flow, audiobook, mastering wealth, financial abundance, transforming mindset, personal finance, attracting money, prosperity, financial success. Money Alchemy: If You Master It, Money Will Flow to You is an innovative audiobook that delves into the transformative techniques of money alchemy, a method that changes one’s financial perspective to attract and maintain wealth. This guide explores how shifting your mindset can create a continuous flow of financial abundance. Ideal for individuals seeking to overcome financial stagnation and invoke an era of monetary prosperity, this audiobook offers practical insights into aligning your mental and emotional energies with wealth generation. Money Alchemy: If You Master It, Money Will Flow To You (Audiobook)
    https://wn.com/Money_Alchemy_If_You_Master_It,_Money_Will_Flow_To_You_(Audiobook)
    The Alchemist | By Paulo Coelho | Part 1 | Effortless English Book Club
    2:00:47

    The Alchemist | By Paulo Coelho | Part 1 | Effortless English Book Club

    • Order:
    • Duration: 2:00:47
    • Uploaded Date: 14 Oct 2018
    • views: 258691
    The Alchemist | By Paulo Coelho | Part 1 | Effortless English Book Club
    https://wn.com/The_Alchemist_|_By_Paulo_Coelho_|_Part_1_|_Effortless_English_Book_Club
    The Book Of Lambspring - An Esoteric Alchemical Manuscript - Full Alchemy Audiobook
    25:45

    The Book Of Lambspring - An Esoteric Alchemical Manuscript - Full Alchemy Audiobook

    • Order:
    • Duration: 25:45
    • Uploaded Date: 10 Mar 2022
    • views: 24114
    The Book Of Lambspring - An Esoteric Alchemical Manuscript - Full Alchemy Audiobook. This is a well known work which was first published by Nicholas Barnaud in 1599. It consisted of a series of 15 verses outlining the alchemical process. It was later issued by Lucas Jennis as part of Dyas chymica tripartita, 1625, and this was illustrated with a series of 15 engravings, together with a symbolic coat-of-arms and a frontispiece. The book avoids complicated allegorical symbols found in other alchemical treatises, and the images are rather plain, symbolizing opposition, struggle and overcoming. The emblems deal with the art of alchemy with the aim of creating the philosopher's stone, which can be used to transform metals and obtain a universal medicine (panacea). Please consider supporting my work and download this audio as part of the ESOTERIC AND OCCULT WISDOM - MASTER COLLECTION (an ongoing collection of Gnostic, alchemical, Hermetic, and related occult audio projects that span dozens of hours) at https://altrusiangrace.bandcamp.com Get my Alchemical Dragon shirt at: Teepublic - https://shrsl.com/3evo9 Amazon - https://amzn.to/3CilyiY *JOIN MY PATREON at https://www.patreon.com/altrusiangracemedia *BECOME A YOUTUBE CHANNEL MEMBER at https://www.youtube.com/channel/UCMzRTOugvDLwhSwJdoSWBZA/join *JOIN THE CULT OF STARRY WISDOM at https://altrusiangrace.bandcamp.com/starry-wisdom-cult *LICENSE MY MUSIC FOR YOUR PROJECT at https://www.pond5.com/artist/altrusiangracemedia *MY BOOKS ON AMAZON at https://amzn.to/3oQGh6A *MY TSHIRTS AND DESIGNS ON TEEPUBLIC at https://teepublic.sjv.io/XxvPDX *MY TSHIRTS AND DESIGNS ON AMAZON at https://amzn.to/3peS9j3 As an Amazon Associate I earn a small amount from qualifying purchases and it helps to support my channel. #alchemy #audiobook #esoteric You can now support me using several cryptos: (ETHEREUM) ETH Address - 0x9a57211FE6E2AdC978379aa17E7EB6A50589d290 (BITCOIN) BTC Address - 3AcXJNTebjkRFfdAuX39G7in4UaMUiWoCw (DOGECOIN) DOGE Address - DRMjmJgvhQTH7hMm63PqyYSctNmP6TiaZt (ALCHEMY) ACH Address - 0x1dDB91d1D9cd4C2Fb66E2dc7662c45bBA5dCb79F (USD COIN) USDC Address - 0x4ccc4577c598aeaD86D432c30fA4Da315eb218bB Please consider LIKING the video, SUBSCRIBING to the channel, and SHARING the links! These simple actions go a long way in supporting AGM and is truly appreciated! ------------------------------------------------------------------------------ ~~Places to follow and support Altrusian Grace Media~~ Website ► https://altrusiangrace.blogspot.com/ Bandcamp ► https://altrusiangrace.bandcamp.com Teepublic Store ► http://shrsl.com/166df Twitter ► https://twitter.com/AltrusianGrace Rumble ► https://rumble.com/c/c-375437 YouTube ► https://www.youtube.com/AltrusianGraceMedia Odessy ► https://odysee.com/@altrusiangracemedia:1 Bitchute ► https://www.bitchute.com/channel/altrusiangracemedia/ ------------------------------------------------------------------------------ OFFICIAL PSYCLOPEAN MERCH - http://shrsl.com/1mh8t MYSTERIES AND MYSTICISM MERCH - http://shrsl.com/21x1v THINKERS, MYSTICS, and PHILOSOPHERS MERCH - http://shrsl.com/1mh8y MORE WEIRD AND WILD MERCH By me - http://shrsl.com/1mh8o To kindly donate directly to my channel: www.paypal.me/altrusiangrace For inquiries regarding voice-over work or licensing for my work (including music) please contact altrusiangracemedia ((at)) gmail.com ~~My Other Channels~~ UFO Retro ► https://www.youtube.com/channel/UCp0A7VAs6asCS8bWPzaIzEQ Sleestak ► https://www.youtube.com/channel/UC3ZeK3i8H4vgqgbvQhoitXg
    https://wn.com/The_Book_Of_Lambspring_An_Esoteric_Alchemical_Manuscript_Full_Alchemy_Audiobook
    The Alchemist by Paulo Coelho Book Review
    3:44

    The Alchemist by Paulo Coelho Book Review

    • Order:
    • Duration: 3:44
    • Uploaded Date: 16 Nov 2024
    • views: 5
    The Alchemist: A Journey to Self-Discovery Join us as we delve into the timeless classic, The Alchemist by Paulo Coelho. In this captivating tale of self-discovery and personal growth, we follow Santiago, a shepherd boy on a quest to fulfill his dreams. Discover the profound lessons hidden within the pages of this philosophical novel, including: • The Personal Legend: Understanding your unique purpose and following your heart. • The Language of the World: Learning to listen to the signs and symbols that guide your path. • The Soul of the World: Connecting with the universal energy that connects all things. Whether you're a seasoned reader or new to Coelho's work, this podcast/video will provide insightful commentary and thought-provoking discussions. Tune in to discover the transformative power of The Alchemist and embark on your own journey of self-discovery. The Alchemist by Paulo Coelho (https://www.google.com/search?q=The+Alchemist+by+Paulo+Coelho&sca_esv=5a02a879fec8af02&sxsrf=ADLYWILtxGRrFHyxuh4vop1uWWqegtuZMg%3A1729441392835&ei=cC4VZ4DPMvncwN4Piq3kwQI&ved=0ahUKEwiAx4Sfr52JAxV5LtAFHYoWOSgQ4dUDCA8&uact=5&oq=The+Alchemist+by+Paulo+Coelho&gs_lp=Egxnd3Mtd2l6LXNlcnAiHVRoZSBBbGNoZW1pc3QgYnkgUGF1bG8gQ29lbGhvMgUQLhiABDIFEAAYgAQyBRAAGIAEMgUQABiABDIFEAAYgAQyBRAAGIAEMgUQABiABDIFEAAYgAQyBRAAGIAEMgUQABiABEivFVDZCVjZCXADeAGQAQCYAY4BoAGOAaoBAzAuMbgBA8gBAPgBAvgBAZgCBaACywrCAgoQABiwAxjWBBhHwgINEAAYgAQYsAMYQxiKBcICDhAAGLADGOQCGNYE2AEBwgITEC4YgAQYsAMYQxjIAxiKBdgBAcICFBAuGIAEGJcFGNwEGN4EGOAE2AEBmAMAiAYBkAYPugYGCAEQARgJkgcHMy4xLjctMaAHhwk&sclient=gws-wiz-serp)
    https://wn.com/The_Alchemist_By_Paulo_Coelho_Book_Review
    Alchemy & Martial Supreme Episodes 1 audiobook full novel
    10:44:20

    Alchemy & Martial Supreme Episodes 1 audiobook full novel

    • Order:
    • Duration: 10:44:20
    • Uploaded Date: 06 Dec 2023
    • views: 4423
    Alchemy & Martial Supreme audiobook novel https://www.youtube.com/playlist?list=PLKmZj8o0IiTFXGn2f42my7SugQJx5ItJg Qin Ming, fueled by unwavering determination, dedicated himself to nurturing the revered physique of the legendary Pill God. Yet, in the pivotal juncture of his journey, he suffered betrayal from someone closest to him. In this new chapter of his life, he aspires not only to attain the status of a Pill God but also to emerge as an unparalleled warrior.
    https://wn.com/Alchemy_Martial_Supreme_Episodes_1_Audiobook_Full_Novel
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Taylor Swift - The Alchemy (Official Lyric Video)
      3:22
      Taylor Swift - The Alchemy (Official Lyric Video)remove from playlist
    • What is Alchemy?
      7:24
      What is Alchemy?remove from playlist
    • Alchemy EXPLAINED (Its Deepest Secret)
      25:20
      Alchemy EXPLAINED (Its Deepest Secret)remove from playlist
    • Alchemy: History of Science #10
      12:50
      Alchemy: History of Science #10remove from playlist
    • Spiritual Alchemy - Esoteric Science of Ascension
      19:31
      Spiritual Alchemy - Esoteric Science of Ascensionremove from playlist
    • Alchemy's BEST KEPT SECRET Revealed
      1:11:39
      Alchemy's BEST KEPT SECRET Revealedremove from playlist
    • What is the Philosophers Stone?  Introduction to Alchemy - History of Alchemical Theory & Practice
      36:58
      What is the Philosophers Stone? Introduction to Alchemy - History of Alchemical Theory & Practiceremove from playlist
    • Introduction to Alchemy
      18:17
      Introduction to Alchemyremove from playlist
    • Alchemy of Peace: Master’s Class
      1:17:53
      Alchemy of Peace: Master’s Classremove from playlist
    • Taylor Swift - The Alchemy (Lyrics)
      3:17
      Taylor Swift - The Alchemy (Lyrics)remove from playlist
    PLAYLIST TIME:

    Taylor Swift - The Alchemy (Official Lyric Video)

    Watch the official lyric video for “The Alchemy” by Taylor Swift, from ‘THE TORTURED POETS DEPARTMENT’ Buy/download/stream ‘THE TORTURED POETS DEPARTMENT’: https://taylor.lnk.to/thetorturedpoetsdepartment ►Subscribe to Taylor Swift on YouTube: https://ts.lnk.to/subscribe ►Shop Merch: http://taylor.lnk.to/store ►Follow Taylor Swift Online: TikTok: http://tiktok.com/@taylorswift Instagram: http://instagram.com/taylorswift Twitter: http://twitter.com/taylorswift13 Snapchat: http://snapchat.com/add/taylorswift Facebook: http://facebook.com/taylorswift Tumblr: http://taylorswift.tumblr.com Website: http://www.taylorswift.com ►Follow Taylor Nation Online TikTok: http://tiktok.com/@taylornation YouTube: https://youtube.com/taylornation Instagram: http://instagram.com/taylornation Twitter: http://twitter.com/taylornation13 Tumblr: http://taylornation.tumblr.com #taylorswift #thetorturedpoetsdepartment
    3:22
    Taylor Swift - The Alchemy (Official Lyric Video)
    Watch the official lyric video for “The Alchemy” by Taylor Swift, from ‘THE TORTURED POETS...
    published: 20 Apr 2024
    Play in Full Screen
    7:24
    What is Alchemy?
    PATREON: https://www.patreon.com/generalistpapers My first video, make sure to tell me wh...
    published: 18 Sep 2020
    Play in Full Screen
    25:20
    Alchemy EXPLAINED (Its Deepest Secret)
    Alchemy is at the very core of esotericism and mysticism, serving as a catalyst for our sp...
    published: 10 Sep 2024
    Play in Full Screen
    12:50
    Alchemy: History of Science #10
    In fantasy stories, charlatans in fancy robes promise to turn lead into gold. But real alc...
    published: 11 Jun 2018
    Play in Full Screen
    19:31
    Spiritual Alchemy - Esoteric Science of Ascension
    Alchemy has become a popular word in the spirit of the sage especially during a spiritual ...
    published: 14 Feb 2023
    Play in Full Screen
    1:11:39
    Alchemy's BEST KEPT SECRET Revealed
    Unlock the hidden mysteries of alchemy in this journey into ancient secrets. Discover the ...
    published: 03 Dec 2024
    Play in Full Screen
    36:58
    What is the Philosophers Stone? Introduction to Alchemy - History of Alchemical Theory & Practice
    The Philosophers' Stone of Alchemy is truly the stuff of legend. It is said to have the p...
    published: 02 Dec 2022
    Play in Full Screen
    18:17
    Introduction to Alchemy
    Avery will be teaching at The Brisbane Powerhouse in Queensland Australia October 5-6, 201...
    published: 21 Sep 2016
    Play in Full Screen
    1:17:53
    Alchemy of Peace: Master’s Class
    Join us for this bonus webinar to our Alchemy of Peace Series. We are opening up the clas...
    published: 01 Jan 2025
    Play in Full Screen
    3:17
    Taylor Swift - The Alchemy (Lyrics)
    Subscribe and press (🔔) to join the Notification Squad and stay updated with new uploads ...
    published: 20 Apr 2024
    Play in Full Screen

    Alchemy

    Alchemy is a philosophical and protoscientific tradition practiced throughout Egypt and Eurasia which aimed to purify, mature, and perfect certain objects. Common aims were chrysopoeia, the transmutation of "base metals" (e.g., lead) into "noble" ones (particularly gold); the creation of an elixir of immortality; the creation of panaceas able to cure any disease; and the development of an alkahest, a universal solvent. The perfection of the human body and soul was thought to permit or result from the alchemical magnum opus and, in the Hellenistic and western tradition, the achievement of gnosis. In Europe, the creation of a philosopher's stone was variously connected with all of these projects.

    In English, the term is often limited to descriptions of European alchemy, but similar practices existed in the Far East, the Indian subcontinent, and the Muslim world. In Europe, following the 12th-century Renaissance produced by the translation of Arabic works on science and the Recovery of Aristotle, alchemists played a significant role in early modern science (particularly chemistry and medicine). Islamic and European alchemists developed a structure of basic laboratory techniques, theory, terminology, and experimental method, some of which are still in use today. However, they continued antiquity's belief in four elements and guarded their work in secrecy including cyphers and cryptic symbolism. Their work was guided by Hermetic principles related to magic, mythology, and religion.

    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • ACTUAL MAGICIAN recommends 5 ALCHEMY Books for BEGINNERS #books #occult
      0:34
      ACTUAL MAGICIAN recommends 5 ALCHEMY Books for BEGINNERS #books #occultremove from playlist
    • The Alchemist, by Paulo Coelho - Animated Book Summary
      8:34
      The Alchemist, by Paulo Coelho - Animated Book Summaryremove from playlist
    • Alchemy - Where to Begin - Introduction to the Summa Perfectionis (Sum of Perfection) Pseudo-Geber
      42:13
      Alchemy - Where to Begin - Introduction to the Summa Perfectionis (Sum of Perfection) Pseudo-Geberremove from playlist
    • The Alchemist Video Summary
      7:19
      The Alchemist Video Summaryremove from playlist
    • The Alchemist  | Summary & Analysis | Paulo Coelho
      6:42
      The Alchemist | Summary & Analysis | Paulo Coelhoremove from playlist
    • Money Alchemy: If You Master It, Money Will Flow To You (Audiobook)
      54:34
      Money Alchemy: If You Master It, Money Will Flow To You (Audiobook)remove from playlist
    • The Book Of Lambspring - An Esoteric Alchemical Manuscript - Full Alchemy Audiobook
      25:45
      The Book Of Lambspring - An Esoteric Alchemical Manuscript - Full Alchemy Audiobookremove from playlist
    • The Alchemist by Paulo Coelho Book Review
      3:44
      The Alchemist by Paulo Coelho Book Reviewremove from playlist
    • Alchemy & Martial Supreme Episodes 1 audiobook full novel
      10:44:20
      Alchemy & Martial Supreme Episodes 1 audiobook full novelremove from playlist
    PLAYLIST TIME: 0:00 / 15:14:32

    ACTUAL MAGICIAN recommends 5 ALCHEMY Books for BEGINNERS #books #occult

    For more in-depth occult advice & recommendations from an actual magician of 45 years experience, check out @MarcusKatzAuthor.
    0:34
    ACTUAL MAGICIAN recommends 5 ALCHEMY Books for BEGINNERS #books #occult
    For more in-depth occult advice & recommendations from an actual magician of 45 years expe...
    published: 08 Jan 2024
    Play in Full Screen
    8:34
    The Alchemist, by Paulo Coelho - Animated Book Summary
    Welcome to this Animated Book Summary of The Alchemist, by Paulo Coelho. This video will p...
    published: 28 Oct 2020
    Play in Full Screen
    42:13
    Alchemy - Where to Begin - Introduction to the Summa Perfectionis (Sum of Perfection) Pseudo-Geber
    Alchemy is one of the most difficult fields of study in Western Esotericism for a host of ...
    published: 09 Oct 2020
    Play in Full Screen
    7:19
    The Alchemist Video Summary
    Visit us at https://www.gradesaver.com/the-alchemist-coelho/study-guide/video to read the ...
    published: 17 Jun 2020
    Play in Full Screen
    6:42
    The Alchemist | Summary & Analysis | Paulo Coelho
    Summarize videos instantly with our Course Assistant plugin, and enjoy AI-generated quizze...
    published: 13 Dec 2017
    Play in Full Screen
    54:34
    Money Alchemy: If You Master It, Money Will Flow To You (Audiobook)
    📖 Get the e-book here: 👉 https://audiobooksoffice.com/products/money-alchemy-once-you-mast...
    published: 09 Jun 2024
    Play in Full Screen
    2:00:47
    The Alchemist | By Paulo Coelho | Part 1 | Effortless English Book Club
    The Alchemist | By Paulo Coelho | Part 1 | Effortless English Book Club
    published: 14 Oct 2018
    Play in Full Screen
    25:45
    The Book Of Lambspring - An Esoteric Alchemical Manuscript - Full Alchemy Audiobook
    The Book Of Lambspring - An Esoteric Alchemical Manuscript - Full Alchemy Audiobook. This ...
    published: 10 Mar 2022
    Play in Full Screen
    3:44
    The Alchemist by Paulo Coelho Book Review
    The Alchemist: A Journey to Self-Discovery Join us as we delve into the timeless classic,...
    published: 16 Nov 2024
    Play in Full Screen
    10:44:20
    Alchemy & Martial Supreme Episodes 1 audiobook full novel
    Alchemy & Martial Supreme audiobook novel https://www.youtube.com/playlist?list=PLKmZj8o0I...
    published: 06 Dec 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)); } }); }); }); // -->
    ×