Zhinan Temple

Zhinan Temple (Chinese: 指南宮; pinyin: Zhĭnán Gōng; also called Chinese: 仙公廟, Xiāngōng Miào; also unofficially anglicized as "Chihnan" or "Jhihnan") is a Taoist temple on the slopes of Houshan (猴山, "Monkey Mountain") in Muzha, a suburb of Taipei, Taiwan. It was founded in 1882. The temple's main deity is Lü Dongbin, one of the Eight Immortals. As Lü is said to dwell in the southern courtyard of the heavenly court, the temple acts as a compass pointing toward the south (指南, zhĭnán); hence the name.

Zhinan Temple
Chinese: 指南宮
Lingxiao Chapel of Zhinan Temple
Religion
AffiliationTaoism
DistrictMuzha District
StatusActive
Location
MunicipalityTaipei City
StateTaiwan
Shown within Taiwan
Geographic coordinates24.9792°N 121.587°E / 24.9792; 121.587
Architecture
StyleSouthern Chinese
Completed1890
Website
www.chih-nan-temple.org

Overview

Popular folklore holds that unmarried couples who visit the temple together will break up. One explanation is that Lü Dongbin, famous for his Taoist sexual prowess, can be counted upon to seduce any unmarried woman (older versions specify that she must be a virgin). Another is that since Lü Dongbin's love for Immortal Woman He went unanswered, he is jealous of lovers.

Zhinan Temple is famous for its stairway of "1000" steps. (This is to the Yuanzhen Pond and the Tudigong shrine; the gate of the Chunyang Chapel requires a further 300 steps.) Several bus routes also serve the temple, especially No. 530 from Zhinan Bus Company. Access by cable car was available between 2007 and 2008, was then suspended due to erosion-related structural problems, and has since been restored.

Layout

Long Corridor leading to Lingxiao Chapel

The oldest part of the temple is the Chunyang Chapel, constructed in 1890. Funding came from gold miners working in Jinshan. This shrine houses a statue of Lü Dongbin, founder of the Chunyang (純陽, "Pure Yang") sect of Quanzhen ("Complete Perfection") Taoism. The present statue was a 2002 gift from Zhinan's "home temple," Yongle Temple in Shanxi province.

Facing the Chunyang Chapel, to the left is the Lingxiao Chapel (built 1963–1966). The main deities are the Jade Emperor (on the top floor) and the Three Pure Ones (on the ground floor). Below these may be found the classrooms and offices of the China Taoism Institute (Zhonghua Daojiao Xueyuan), a Quanzhen seminary granting (unrecognized) two-year BA and MA degrees in Taoism.

To the right of the Chunyang Chapel is the Buddhist-themed Daxiong Chapel (built 1973). A black statue of Sakyamuni Buddha was the gift of a Thai military officer who, while exiled to Taiwan, vowed to donate such a statue in the event that he returned to power.

Behind the Lingxiao Chapel is the much smaller Dacheng Chapel, dedicated to Confucius.

Transportation

The temple is accessible via Zhinan Temple Station of Maokong Gondola.

gollark: The stages of git clone are: Receive a "pack" file of all the objects in the repo database Create an index file for the received pack Check out the head revision (for a non-bare repo, obviously)"Resolving deltas" is the message shown for the second stage, indexing the pack file ("git index-pack").Pack files do not have the actual object IDs in them, only the object content. So to determine what the object IDs are, git has to do a decompress+SHA1 of each object in the pack to produce the object ID, which is then written into the index file.An object in a pack file may be stored as a delta i.e. a sequence of changes to make to some other object. In this case, git needs to retrieve the base object, apply the commands and SHA1 the result. The base object itself might have to be derived by applying a sequence of delta commands. (Even though in the case of a clone, the base object will have been encountered already, there is a limit to how many manufactured objects are cached in memory).In summary, the "resolving deltas" stage involves decompressing and checksumming the entire repo database, which not surprisingly takes quite a long time. Presumably decompressing and calculating SHA1s actually takes more time than applying the delta commands.In the case of a subsequent fetch, the received pack file may contain references (as delta object bases) to other objects that the receiving git is expected to already have. In this case, the receiving git actually rewrites the received pack file to include any such referenced objects, so that any stored pack file is self-sufficient. This might be where the message "resolving deltas" originated.
gollark: UPDATE: this is wrong.
gollark: > Git uses delta encoding to store some of the objects in packfiles. However, you don't want to have to play back every single change ever on a given file in order to get the current version, so Git also has occasional snapshots of the file contents stored as well. "Resolving deltas" is the step that deals with making sure all of that stays consistent.
gollark: A lot?
gollark: probably.

See also

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.