Saturday, 28 January 2023

Progress with trataka

Yesterday I had my first awaited success with the trataka meditation. I could recall the Antahkarana symbol in the vision, but it didn't have the usual afterimage color this time. Instead, it had the sort of indigo color that is normal for my mind's eye.

I also created another printable symbol that can be used for the trataka, the Sigillum Dei, the Seal of God.


My variation of the Sigillum Dei is available here: https://drive.google.com/file/d/1emmRmschlCZSgAJRjy82JWF3dDPcVmT5/view?usp=sharing

Monday, 23 January 2023

Reconstruction of the Sol square

I have reached a dead end while trying to reconstruct the Magick square for Sun (Sol). And help would be greatly appreciated. I have reached a place where I know how to construct the traditional square, but I do not know why it was made this way.


You can find my notes here: https://drive.google.com/file/d/1eDvovF1SLDoY1TI9A-rOBGgsYdzNgfF8/view?usp=share_link

Sunday, 22 January 2023

Imagination after the hiatus

 One thing that suffers a lot after a long hiatus from the practice is definitely the imagination. The imagination used for Magick is a bit different than the one humans typically use. You know, I could ask you to imagine your favorite place or a scene from a movie. You wouldn't have a problem with that. However, that kind of imagination always feels like it exists somewhere else. The imagination used for Magick exists right before you, right before your eyes, or around your body. That's why the word visualization is often used to explain the concept a bit more correctly. What is also interesting, if you focus on the properly visualized image for long enough, this image will actually burn into your retina and cause an afterimage.


So, how to develop and strengthen this type of imagination? The best method I have found so far is the trataka meditation. Trataka is great for a couple of reasons. First and foremost, it's a focal meditation, allowing you to learn how to tame your thoughts. Secondly, it's fun. For example, even 5 minutes of void meditation can feel like an eternity when you start, trataka keeps being interesting and even 20 minutes feel like nothing.


Of course, you can use many images for trataka, you can even go the path of tattvas, as it was designed by the Golden Dawn, but my favorite is probably the symbol of Antahkarana, the ever-changing symbol. Since my way of doing things changed so much during the hiatus, I do not draw by hand anymore, so I have crafted a printable version because trataka via the computer display can strain your eyes a lot. Try it out yourself and let me know.


https://drive.google.com/file/d/1kes1NFct21pHPClURgi80AugvklcOAdH/view?usp=share_link

Wednesday, 11 January 2023

Studying geomancy

 I am currently in the process of a deeper study into geomancy. I find it interesting that its houses chart is actually more complex than the one I learned for the tarot, it's more similar to the one from astrology.

For now, I can share with you the shield chart I have made in Krita.

P.S. Let me know if you want some tutorial on how to use Krita effectively in the future.

Wednesday, 4 January 2023

Generating geomantic figures with Micro:bit

 So, I did talk about geomancy before and how many different ways there are to generate the figures, so let's look at the modern one. BBC Micro:bit is a pocket-sized computer that is perfect for getting introduced into hardware programming. You simply buy the little bugger, connect it to your computer, and then go to https://makecode.microbit.org/, there you can go through the tutorials, make your code, and download it to the Micro:bit.  There are also a ton of prepared projects for you including automated plant watering, making RC models, etc.

But enough with the unpaid advertisement for the little bugger. You can also use it to generate geomantic figures. Here's what the use-case look like:


Not bad, right? This loud noise detection is a functionality of Micro:bit V2, if you got the first version, you can use either the buttons or you can code the Micro:bit to detect shaking, etc.


And this is what the code looks like in JavaScript:

// Figure is the set of four numbers
let figure: number[] = []
let partValue = 0

// Displays the generated figure
function displayFigure (figure: number[]) {
    basic.showLeds(`
        . . . . .
        . . . . .
        . . . . .
        . . . . .
        . . . . .
        `)
    for (let i = 0; i <= 3; i++) {
        displayLine(i, figure[i])
    }
}

// Generates the figure, meaning the four numbers, either value 1 or 2
function generateFigure () {
    figure = [
    0,
    0,
    0,
    0
    ]
    for (let part = 0; part <= 3; part++) {
        partValue = randint(1, 2)
        figure[part] = partValue
    }
}

// If the generated number is 2, it will light up two LED diodes on the line, else it will light up only one
function displayLine (lineIndex: number, lineValue: number) {
    if (lineValue == 1) {
        led.plot(2, lineIndex)
    } else {
        led.plot(1, lineIndex)
        led.plot(3, lineIndex)
    }
}

input.onSound(DetectedSound.Loud, function () {
    generateFigure()
    displayFigure(figure)
    music.startMelody(music.builtInMelody(Melodies.BaDing), MelodyOptions.Once)
})

Tuesday, 3 January 2023

Trying to quit smoking

 So, I think you already know that I tried to quit smoking in the past... and failed. The problem was I was usually trying to quit cold turkey, using all my willpower to stop. And people always say the same thing: "First 3 days are the hardest", "First week is the hardest", "First two weeks are the hardest", or "First month is the hardest". The truth is that quitting just sucks. And every single time you relapse, your willpower takes a massive hit, making it even harder to quit next time.


So, the idea came to my mind. Instead of trying my hardest to quit and failing, let's instead use the little willpower left for something that might actually help, Magick...


I have created a sigil for quitting smoking and have been passively charging it the traditional way.


The sigil looks like this:


The mantra associated with the sigil is FERE SATAT KORI


And here is a thing, while using the sigil, I found out that I do smoke less now. As time progresses, the sigil should be charged enough for me to completely stop. I also printed out a smaller version of the sigil so I could put it into the cigarette packet. 


But most importantly, because I know that these mantras usually have their own rhythm, I have decided this time to record myself chanting the mantra and publish it online. This can be used for meditation or even being played on a loop overnight, to affect you while sleeping.


Just keep in mind, while these chants tend to be very mesmerizing, do not attempt to listen to it while driving, as it can make you sleepy.




Monday, 2 January 2023

Happy New Year

 Happy New Year, folks, I am back!


You are all wondering, what was with the long hiatus? Truth be told, my practice was severely lacking, and that was even before I stopped posting. I didn't practice for the betterment, instead, I just practiced so I can post here about it. This took several years, and I was even hurt because of it. I remember one such attempt where I tried to evoke an entity into a physical manifestation. The whole result was pretty fuzzy, an arm here or there, fading back and forth. And my first response? Sit down at the computer and start writing, completely disregarding that an entity is currently hovering around, tapping on my shoulder. So, there, I did what a stupid person would do, banishing with a clap. And a few days later? I cut myself with a hatchet while making splinters for a campfire...


As for my practice, a lot of changes happened. First of all, I abandoned the use of all ritualistic tools (no wand, no dagger, no amulets, talismans, etc). And also, no tarot. The last one is actually easy to explain. I got kids now and my tarot deck got damaged (and then lost), instead I started using geomancy, which, quite frankly, is a much better alternative. First of all, I don't need any physical deck and the figures can be generated with many different approaches. Anything from drawing lines in a notebook up to throwing chicken bones. I also found out that geomantic figures can be combined with tarot spreads and even something as generic as the Celtic cross spread can give a lot of useful insights using geomancy.


With that being said, I do not intend to fully abandon the tools, after all, there is nothing that can really replace the black mirror, but I really need some time to charge my old mirror properly.


What else? There is a lot of stuff I can share now considering the years that I shared nothing. It's also bad luck that I have lost contact with many great people, namely because my Facebook account was suspended (Facebook REALLY doesn't like when you don't use your real name, go figure...). I will try to get some of those contacts back, but frankly, many of the New Age people I spoke with are just not worth the effort.


Anyway, with that being said. Happy New Year, and look forward to more. And if you want, just reach out to me via this blog or on Studio Arcanis.

About the Summer Solstice

What is the summer solstice The summer solstice is the time of the year when the day is the longest and the night is the shortest. It’s the ...