Refining the Elixir

Refining the Elixir
Author: Stuart Olson
Publisher: Createspace Independent Publishing Platform
Total Pages: 0
Release: 2016-02-22
Genre:
ISBN: 9781530220557

Refining the Elixir is one of the clearest and most in-depth analyses on Internal Alchemy (Neidan) in English. Aside from the excellent translation work, Stuart Alve Olson provides extensive introductory sections and commentaries on the texts-a wonderful guide for practicing and learning the meditation art and science of Internal Alchemy. Stuart Alve Olson addresses the mystical terminology of Internal Alchemy by explaining it in understandable, detailed, and practical terms. Anyone, no matter the tradition of meditation followed, will find this book inspiring and enlightening. Four important works by Zhang Sanfeng (Three Peaks Zhang) are provided, along with commentaries: The Great Process for Refining the Elixir Treatise Verses on Seated Meditation The Sleeping Immortal Zhang Sanfeng's Commentary on Lu Zi's One Hundred Word Discourse These four works of Zhang Sanfeng outline clear perspectives on the Taoist practice of Internal Alchemy, a unique and effective system designed for the development of health, longevity, and immortality.Zhang Sanfeng, a Taoist priest of the twelfth century, is not only credited with the creation of Tai Ji Quan, but with some of the greatest Internal Alchemy texts. He reportedly lived 170 years, from the late Song dynasty through the Yuan and into the early Ming dynasty. Zhang's life exemplified the Chinese ideal of a true "cloud wandering" immortal. His internal alchemy and meditation texts reveal not only his deep wisdom, but his great influence on Taoism and the teachings leading to immortality.

Foundations of Internal Alchemy

Foundations of Internal Alchemy
Author: Mu Wang
Publisher: Golden Elixir Press
Total Pages: 156
Release: 2011
Genre: Body, Mind & Spirit
ISBN: 0984308253

Originally written for Chinese readers, this book provides a clear description of the Taoist practice of Internal Alchemy, or Neidan. The author outlines the four stages of the alchemical practice and clarifies several relevant terms and notions, including Essence, Breath, and Spirit; the Cinnabar Fields; the "Fire Times"; and the Embryo. The book is based on the system of the Wuzhen pian (Awakening to Reality), one of the main sources of Internal Alchemy, and contains about two hundred quotations from original Taoist texts. Table of Contents Foreword, vii INTRODUCTION, 1 The Basis: Essence and Spirit, 3 STAGES OF THE ALCHEMICAL PRACTICE IN AWAKENING TO REALITY, 11 The Four Stages, 13 "Laying the Foundations," 15 Main Points in the Practice of "Laying the Foundations," 20 The Functions of Essence, Breath, and Spirit, 36 Terms Related to the "Coagulation of the Three Treasures," 52 Conclusion of the Stage of "Laying the Foundations," 63 "Refining Essence to Transmute it into Breath," 65 "Refining Breath to Transmute it into Spirit," 99 "Refining Spirit to Return to Emptiness," 109 CONCLUSION, 119 The "Arts of the Way," 121 Tables, 123 Glossary of Chinese Characters, 133

Cultivating the Tao

Cultivating the Tao
Author: Yiming Liu
Publisher:
Total Pages: 180
Release: 2013-12-01
Genre: Alchemy
ISBN: 9780985547516

Cultivating the Tao is a complete translation of one of the main works by the renowned Taoist master Liu Yiming (1734-1821). Divided into 26 short chapters, this book provides a comprehensive overview of the basic principles of Taoism and an introduction to Taoist Internal Alchemy, or Neidan, authored by one of the greatest representatives of this tradition. Liu Yiming was an 11th-generation master of the Longmen (Dragon Gate) lineage. Having recovered from severe illness in his youth, he undertook extended traveling that led him to meet his two main masters. In 1780, he settled in the Qiyun mountains, in the present-day Gansu province. Since then until his death he devoted himself to teaching and writing. His works mainly consist of writings on Neidan and of commentaries on major Neidan scriptures. Liu Yiming grafts Internal Alchemy onto the teachings of the Book of the Way and Its Virtue (Daode jing) and of the later Taoist tradition. Few other masters have illustrated the relation between Taoism and Internal Alchemy as clearly as he does in this book.

Programming Ecto

Programming Ecto
Author: Darin Wilson
Publisher: Pragmatic Bookshelf
Total Pages: 330
Release: 2019-04-01
Genre: Computers
ISBN: 1680506935

Languages may come and go, but the relational database endures. Learn how to use Ecto, the premier database library for Elixir, to connect your Elixir and Phoenix apps to databases. Get a firm handle on Ecto fundamentals with a module-by-module tour of the critical parts of Ecto. Then move on to more advanced topics and advice on best practices with a series of recipes that provide clear, step-by-step instructions on scenarios commonly encountered by app developers. Co-authored by the creator of Ecto, this title provides all the essentials you need to use Ecto effectively. Elixir and Phoenix are taking the application development world by storm, and Ecto, the database library that ships with Phoenix, is going right along with them. There are plenty of examples that show you the basics, but to use Ecto to its full potential, you need to learn the library from the ground up. This definitive guide starts with a tour of the core features of Ecto - repos, queries, schemas, changesets, transactions - gradually building your knowledge with tasks of ever-increasing complexity. Along the way, you'll be learning by doing - a sample application handles all the boilerplate so you can focus on getting Ecto into your fingers. Build on that core knowledge with a series of recipes featuring more advanced topics. Change your pooling strategy to maximize your database's efficiency. Use nested associations to handle complex table relationships. Add streams to handle large result sets with ease. Based on questions from Ecto users, these recipes cover the most common situations developers run into. Whether you're new to Ecto, or already have an app in production, this title will give you a deeper understanding of how Ecto works, and help make your database code cleaner and more efficient. What You Need: To follow along with the book, you should have Erlang/OTP 19+ and Elixir 1.4+ installed. The book will guide you through setting up a sample application that integrates Ecto.

Property-Based Testing with PropEr, Erlang, and Elixir

Property-Based Testing with PropEr, Erlang, and Elixir
Author: Fred Hebert
Publisher: Pragmatic Bookshelf
Total Pages: 497
Release: 2019-01-17
Genre: Computers
ISBN: 1680506544

Property-based testing helps you create better, more solid tests with little code. By using the PropEr framework in both Erlang and Elixir, this book teaches you how to automatically generate test cases, test stateful programs, and change how you design your software for more principled and reliable approaches. You will be able to better explore the problem space, validate the assumptions you make when coming up with program behavior, and expose unexpected weaknesses in your design. PropEr will even show you how to reproduce the bugs it found. With this book, you will be writing efficient property-based tests in no time. Most tests only demonstrate that the code behaves how the developer expected it to behave, and therefore carry the same blind spots as their authors when special conditions or edge cases show up. Learn how to see things differently with property tests written in PropEr. Start with the basics of property tests, such as writing stateless properties, and using the default generators to generate test cases automatically. More importantly, learn how to think in properties. Improve your properties, write custom data generators, and discover what your code can or cannot do. Learn when to use property tests and when to stick with example tests with real-world sample projects. Explore various testing approaches to find the one that's best for your code. Shrink failing test cases to their simpler expression to highlight exactly what breaks in your code, and generate highly relevant data through targeted properties. Uncover the trickiest bugs you can think of with nearly no code at all with two special types of properties based on state transitions and finite state machines. Write Erlang and Elixir properties that generate the most effective tests you'll see, whether they are unit tests or complex integration and system tests. What You Need Basic knowledge of Erlang, optionally ElixirFor Erlang tests: Erlang/OTP >= 20.0, with Rebar >= 3.4.0For Elixir tests: Erlang/OTP >= 20.0, Elixir >= 1.5.0

The Way of Complete Perfection

The Way of Complete Perfection
Author:
Publisher: SUNY Press
Total Pages: 470
Release: 2013-06-01
Genre: Religion
ISBN: 1438446519

An anthology of English translations of primary texts of the Quanzhen (Complete Perfection) school of Daoism.

Awakening to Reality

Awakening to Reality
Author: Fabrizio Pregadio
Publisher: Golden Elixir Press
Total Pages: 114
Release: 2009
Genre: Body, Mind & Spirit
ISBN: 0984308210

Awakening to Reality (Wuzhen pian) is one of the most important and best-known Taoist alchemical texts. Written in the eleventh century, it describes in a poetical form, and in a typically cryptic and allusive language, several facets of Neidan, or internal alchemy. The present book presents the first part of the text, consisting of sixteen poems, which contain a concise but comprehensive exposition of Neidan. In addition to notes that intend to clarify the meaning of the more obscure points, the book also contains selections from a commentary dating from the late eighteenth century, which is distinguished by the use of a lucid and plain language. ⿿ Fabrizio Pregadio has taught at the University of Venice (1996-97), the Technical University of Berlin (1998-2001), and Stanford University (2001-08). He is the author of Great Clarity: Daoism and Alchemy in Early Medieval China (Stanford University Press, 2006) and the editor of The Encyclopedia of Taoism (Routledge, 2008).

解救药老(英文版)

解救药老(英文版)
Author: 月关
Publisher: 露露
Total Pages: 804
Release: 2023-07-14
Genre: Comics & Graphic Novels
ISBN: 1304610462

Fusion is a very important step in the process of alchemy. In addition, Xiao Yan does not have enough medicinal materials now, so this kind of fusion cannot fail easily. Otherwise, it will not only be time-consuming, but also a terrible consumption of energy. Refining an elixir of this level is a very tiring task, how could it last too long?

The Inner Teachings of Taoism

The Inner Teachings of Taoism
Author: Chang Po-tuan
Publisher: Shambhala Publications
Total Pages: 141
Release: 2001-01-09
Genre: Religion
ISBN: 0834828359

Taoist inner alchemy is a collection of theories and practices for transforming the mind and refining the self. The Inner Teachings of Taoism includes a classic of Chinese alchemy known as Four Hundred Words on the Gold Elixir. Written in the eleventh century by a founder of the Complete Reality School, this text is accompanied by the lucid commentary of the nineteenth-century adept Lui I-ming.

Blue Dragon, White Tiger

Blue Dragon, White Tiger
Author: Chang Sen Feng
Publisher: Singing Dragon
Total Pages: 114
Release: 2012-11-15
Genre: Religion
ISBN: 0857010964

Written during the Tang dynasty, this unusual tantric guide documents a sexual tantra that is thought to have been practiced by kings for several dynasties, before losing favor to a more ascetic approach to Taoism. According to legend, the author was last seen on the edge of a precipice, clasping the book to his chest, and proclaiming the sincerity of his practice. Translated into English for the first time, this illuminating text carefully describes the methods of this sexual internal alchemy practice, pursued strictly for the spiritual advancement of the practitioner, and undertaken only once desire and attachment for a consort had been overcome. Cloaked in metaphor, the techniques and attendant virtues of the practice are presented in beautiful poetry and prose, with explanatory commentaries throughout. This is an important historical text that will provide a fascinating insight into ancient tantric practices for anyone with an interest in Taoism, Chinese history and philosophy, and tantra or meditation practices.