Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/zsh | |
# This script calculates the time of sunrise. | |
# then displays the genie (angel) that is the ruler for that day. | |
# | |
# It makes use of the Astrolog program, which has CLI version for 'all' operating systems and GUI for Windows. | |
# Astrolog is a wonderful program and can be found at <http://astrolog.org/astrolog.htm> or <https://github.com/CruiserOne/Astrolog>. | |
# Compiled versions for Linux are available at <https://codeberg.org/toddcarnes/Astrolog-64>. | |
# | |
# To learn more about the genii (angels), consult these web sites. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'והויה' | 'יליאל' | 'סיטאל' | 'עלמיה' | 'מהשיה' | 'ללהאל' | 'אכאיה' | 'כהתאל' | 'הזיאל' | 'אלדיה' | 'לאויה' | 'ההעיה' | 'יזלאל' | 'מבהאל' | 'הריאל' | 'הקמיה' | 'לאויה' | 'כליאל' | 'לוויה' | 'פהליה' | 'נלכאל' | 'יייאל' | 'מלהאל' | 'חהויה' | 'נתהיה' | 'האאיה' | 'ירתאל' | 'שאהיה' | 'רייאל' | 'אומאל' | 'לכבאל' | 'ושריה' | 'יחויה' | 'להחיה' | 'כוקיה' | 'מנדאל' | 'אניאל' | 'חעמיה' | 'רהעאל' | 'ייזאל' | 'הההאל' | 'מיכאל' | 'ווליה' | 'ילהיה' | 'סאליה' | 'עריאל' | 'עשליה' | 'מיהאל' | 'והואל' | 'דניאל' | 'החשיה' | 'עממיה' | 'ננאאל' | 'ניתאל' | 'מבהיה' | 'פויאל' | 'נממיה' | 'יילאל' | 'הרחאל' | 'מצראל' | 'ומבאל' | 'יההאל' | 'ענואל' | 'מחיאל' | 'דמביה' | 'מנקאל' | 'איעאל' | 'חבויה' | 'ראהאל' | 'יבמיה' | 'הייאל' | 'מומיה' |
---|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict' | |
// https://en.wikipedia.org/wiki/Shemhamphorasch | |
// builds de names of the 72 genii of Kabbalah | |
// the three constants below are each one of 72 letters (without spaces) | |
// chapter 14, verses 19, 20, 21 from Exodus | |
const EXODE1419 = 'ויסעמלאךהאלהיםההלךלפנימחנהישראלוילךמאחריהםויסעעמודהענןמפניהםויעמדמאחריהם' | |
const EXODE1420 = 'ויבאביןמחנהמצריםוביןמחנהישראלויהיהענןוהחשךויאראתהלילהולאקרבזהאלזהכלהלילה' | |
const EXODE1421 = 'ויטמשהאתידועלהיםויולךיהוהאתהיםברוחקדיםעזהכלהלילהוישםאתהיםלחרבהויבקעוהמים' |