Skip to content

Instantly share code, notes, and snippets.

@jaumeb
jaumeb / arbreSefirotic.svg
Last active January 4, 2025 19:00
L'arbre Sefiròtic
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
#!/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.
@jaumeb
jaumeb / 72GeniiNames.csv
Created February 4, 2018 19:08
72 names of genii
'והויה' 'יליאל' 'סיטאל' 'עלמיה' 'מהשיה' 'ללהאל' 'אכאיה' 'כהתאל' 'הזיאל' 'אלדיה' 'לאויה' 'ההעיה' 'יזלאל' 'מבהאל' 'הריאל' 'הקמיה' 'לאויה' 'כליאל' 'לוויה' 'פהליה' 'נלכאל' 'יייאל' 'מלהאל' 'חהויה' 'נתהיה' 'האאיה' 'ירתאל' 'שאהיה' 'רייאל' 'אומאל' 'לכבאל' 'ושריה' 'יחויה' 'להחיה' 'כוקיה' 'מנדאל' 'אניאל' 'חעמיה' 'רהעאל' 'ייזאל' 'הההאל' 'מיכאל' 'ווליה' 'ילהיה' 'סאליה' 'עריאל' 'עשליה' 'מיהאל' 'והואל' 'דניאל' 'החשיה' 'עממיה' 'ננאאל' 'ניתאל' 'מבהיה' 'פויאל' 'נממיה' 'יילאל' 'הרחאל' 'מצראל' 'ומבאל' 'יההאל' 'ענואל' 'מחיאל' 'דמביה' 'מנקאל' 'איעאל' 'חבויה' 'ראהאל' 'יבמיה' 'הייאל' 'מומיה'
@jaumeb
jaumeb / genii72names.js
Last active April 28, 2023 20:27
builds the 72 names of the genii of Kabbalah from the letters of Exodus 14:19,20,21
'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 = 'ויטמשהאתידועלהיםויולךיהוהאתהיםברוחקדיםעזהכלהלילהוישםאתהיםלחרבהויבקעוהמים'