Blogs

Wiccan Divination Sessions

 photo GDfqTwaY7ys_zpsjdzsryou.png

The Rain Dancer's Divination Sessions!
Do you want to know what awaits you in the near future?
Find out your lucky card?
Order a small amulet?
Get advice for the next month on your zodiac sign?
Then come to our cozy company!

So, I just thought, since I have been doing Wiccan craft for 5 years, namely tarot fortune-telling, why not share this craft with other inhabitants of the forest?
Yes, I know that other members of the community can do something similar, but the idea itself is inspired by the fact that I do tarot myself, as written above, and have also been studying Wicca for 7 years. I MAKE PREDICTIONS NOT ONLY IN TEF

Location:
- Crying Idol
- Ruins (only on special days)


How to use the services:
- Find Feha in the forest (her pictogram is shown in the photo);
- Sit next to her;
- Write to me on discord (7FinalGirl8#3004, also i can be found on some TEF servers)
!To order an amulet - just write to me in the discord or under this record, you DO NOT NEED to look for me in the game!


When the sessions take place:
- Friday
- Monday
- Saturday
These days Feha can be found at the Crying Idol, if she is there, then the predictions are still relevant!
Usually she is there like two or three hours



List of services:
- Fortune telling on ONE card
(Just draw out the card with the desired number and get a specially prediction);
- Find out your personal card
(all you need is to say your full date of birth);
- Advice for the next month according to the sign of the zodiac
(find out which rules are best to follow this month by simply saying your zodiac sign)
- Purchase a lucky charm for your character
(it can be beads, earrings, scarves, figurines, whatever, Feha makes all this herself for a variety of occasions,amulets can be purchased ready-made or by special order)
!All services are free, any gratitude gifts are optional!


Amulets shop (constantly replenished, you can find out about all amulets and their properties before purchasing)



Sold:


In stock:

Flying Deer in Texas Forest

The clouds innocently streamed across the sky. White, high but not cirrus. Clouds from the sea making strands like seagrass but in the sky. Slowly the clouds broaden over time and the blue sky disappears. Gently and ever so quietly it began to drizzle and the sky became the soft gray all the way to the ground as the landscape began to shadow.

The wind though slight stirred alarms in the heads of deer. More was to come and night was upon them. Scanning the horizon the deer saw the outline of an ancient tree and hoped its large root system entering the ground would provide an alcove of safety for what was to come. Making their way through field and trees they stopped to graze in case the storm was long.

The ancient tree had what was needed. Two immense roots plunging into the ground with at least three feet of height. Nesting in the older deer looked at the canopy and its thickness indicated it would ward off the worst of the rain.

Several hours later the gentle wind increased into a gale with rain driving sideways and the canopy showering the sheltered deer with leaves and small branches. The roots height blocked most the severe gusts but rain still managed to pelt them once in a while. The canopy danced back and forth swaying and bowing.

Suddenly the bleat of another deer not in the group was heard. Natural instinct was to pop up and offer help. Ancient deer with a turn of the head and a nod stopped that. The wind would win and more than one deer would be in trouble. The deer bleated loudly in hopes the one battered and torn could come and take shelter.

Out of the mist two deer appeared ragged with wind whips across their fur and they darted into the root system and fell exhausted on the edge of the herd. The wind picked up speed just as they entered the haven and the outline of a third deer appeared for a second. Then the wind got underneath and casted the deer into the air.

CSS TESTing

HOME | TRACKER | MAP

DISCLAIMER
Snowsauria's picture

Kaura; I see the wind wander.

lil moose babu is here

The Rut 2021 - Post-Rut Discussion

Event HUB

Seemed like a particularly good one this year!

Now's a good chance to offer any feeeback for the event. So please have at it!

We decided on a timeframe that covered 3 weekends to try to maximize participation opportunities for everyone. How was that? If it went well we may just keep this formula.
How was the Challengers role, and how we modified it? Did it suit its purpose?

- Adam -

GUI Deer Arriving with Global Architect

Has anyone done a visual representation of the architecture of the Internet or its spaces. Would it be organized chaos?

designing
a person who designs hardware, software, or networking applications and services of a specified type for a business or other organization.

Michalangelo, Zaha Hadia and today Maya Lin many more exist.

Programming uses words to create frameworks for art

When do those groups show up because without them we would not have art here on the Internet or even here. Always there underneath providing the framework of what will be in the space taken or given.
try:
import tkinter
except ImportError: # python 2
import Tkinter as tkinter

import os
mainWindow = tkinter.Tk()

mainWindow.title("Grid Demo")
mainWindow.geometry('640x480-8-200')

label = tkinter.Label(mainWindow, text="Tkinter Grid Demo")
label.grid(row=0, column=0, columnspan=3)

mainWindow.columnconfigure(0, weight=1)
mainWindow.columnconfigure(1, weight=1)
mainWindow.columnconfigure(2, weight=3)
mainWindow.columnconfigure(3, weight=3)
mainWindow.columnconfigure(4, weight=3)
mainWindow.rowconfigure(0, weight=1)
mainWindow.rowconfigure(1, weight=10)
mainWindow.rowconfigure(2, weight=1)
mainWindow.rowconfigure(3, weight=3)
mainWindow.rowconfigure(4, weight=3)

fileList = tkinter.Listbox(mainWindow)
fileList.grid(row=1, column=0, sticky="nsew", rowspan=2)
fileList.config(border=2, relief="sunken")

for zone in os.listdir('/Windows/System32'):
fileList.insert(tkinter.END, zone)

mainWindow.mainloop()
image.png
Syndicate content