Una parabola d'amore's Journal (original) (raw)

1:15 am
[emptyvase]

the OLD nursery rythmes; were maybe best.

Old Mother Hubbard went to the cupboard,
To fetch her poor dog a bone.
But when she got there, her cupboard was bare,
so then the poor dog had none.
She went to the baker's to buy him some bread;
When she got back, the poor dog was dead.
She went to the joiner's to buy him a coffin;
When she got back, the dog was a-laughing.
She took a clean dish to get him some tripe;
When she came back, he was smoking a pipe.
She went to the out-house to get him some beer;
When she came back, the dog sat in a chair.
She went to the fruiter's to buy him some fruit;
When she came back, he was playing the flute.
She went to the tailor's to buy him a coat;
When she came back, he was riding a goat.
She went to the hatter's to buy him a hat;
When she came back, he was feeding the cat.
She went to the barber's to buy him a wig;
When she came back, he was dancing a jig.
She went to the cobbler's to buy him some shoes;
When she came back, he was reading the news.
She went to the seamstress to buy him some linen;
When she came back, the dog was a-spinning.
She went to the hosier's to buy him some hose;
When she came back, he was dressed in his clothes.
The dame made a curtsy, the dog made a bow;
The dame said, "Your servant," the dog said, "Bow-wow."

This is an old joke:

Old Mother Hubbard went to the cupboard,
To get her poor daughter a dress.
When she got there, her cupboard was bare,
And so was her daughter, I guess.
Another version:

Old Mother Hubbard sat in her cubbard,
Eating Jack's Christmas pie;
He opened the door
Gave a furious roar,
And blackened Mother Hubbard's right eye.
An off-color variation:

Old Mother Hubbard went to the cupboard,
To get her old dog a bone.
She bent over, Rover took over!
She got a bone of her own.

My Brand New Version

Young Mother Hubbard went to the cupboard,
To fetch her dear husband a snack,
But when she got there the cupboard was bare,
He claimed that he did not know jack,
A Thief came in the night,
And stole all their money,
All of a sudden nothing was funny,

The fought and they argued to no avail,
They hed out to sea with a colourful sail,
They look for a land where jack lives no more,
Where he is not a serpent and she is no whore,
They found a beach on a far away land,
They took a stroll hand in hand,
The rest is a tale for a man with no sail just love and it was divine.

1:53 am
[emptyvase]

just a game! ;You have full right to take this code/reproduce it, and you do not need my permission for it

alias shiffre {
;Write starting values to the hash table
var %hcommand = hadd -m shiffre
%hcommand level 1
%hcommand x 2
%hcommand y 2

;About game enabled:
;game_enabled = 0 | game is disabled
;game_enabled = 1 | game is waiting
;game_enabled = 2 | user is allowed to press a key

;Startshiffre: continues with the rest of the code
startshiffre
}
alias -l startshiffre {
;Write some default settings, that need to be set each time after a new level, you should not change these
var %hcommand = hadd -m shiffre
%hcommand game_enabled 1
%hcommand timer 1
%hcommand countdown 4

;Open the window
window -ak0 @shiffre

;Clear the window
clear @shiffre

;Create the play field
shiffrecreatefield

;Timer to do certain operations
.timershiffretimer 3 1 shiffretimer
}

alias -l shiffretimer {
;Is the game enabled? Check first. (Because this is a timed function this is important)
if ($hget(shiffre,game_enabled) = 0) {
.timershiffretimer off
return
}

;Set the label for the goto command
var %label = $hget(shiffre,timer)

;increase one
hinc -m shiffre timer

;Goto the label to perform commands
goto %label

:1 | return
:2 | removerandomnumber | return
:3 | askfornumber | return
}

alias -l shiffrecreatefield {
;Create Play Field function

;Double while loop to create the play field
var %y = $hget(shiffre,y)
while %y {
var %x = $hget(shiffre,x), %output
while %x {
%output = +(+(%output,+(rand(0,9))
dec %x
}
aline @shiffre %output
dec %y
}
}

alias -l removerandomnumber {
;Remove a random number from the field

;Set the line to replace
var %linetoreplace = rand(1,rand(1,rand(1,hget(shiffre,y))

;This is the line
var %line = $line(@shiffre,%linetoreplace)

;Calculate which Nth number has to be removed
var %char = rand(1,rand(1,rand(1,hget(shiffre,x))

;Store that number
hadd -m shiffre number $mid(%line,%char,1)

;Make the new line with a loop, so that position %char can be removed
var %a = 1, %newline, %charadd
while %a <= $len(%line) {
%charadd = $mid(%line,%a,1)
if (%a = %char) %charadd = $chr(160)
%newline = $+(%newline,%charadd)
inc %a
}

;Replace the line
rline @shiffre %linetoreplace %newline
}

alias -l askfornumber {
;Ask for the removed number function

;Is the game enabled? Check first.
if ($hget(shiffre,game_enabled) = 0) return

;Get the current countdown number
var %countdown = calc(calc(calc(hget(shiffre,countdown) - 1)

;You are gameover
if (%countdown = 0) gameover

;Decrease the countdown in the ini file, if it reaches 0, then you are game over
hadd -m shiffre countdown %countdown

clear @shiffre
echo @shiffre Enter number ( ++ %countdown ++ )

;Now the user is allowed to type in a number
hadd -m shiffre game_enabled 2

;Timed loop through this function for the countdown
.timershiffrecountdown 1 1 askfornumber
}

alias -l gameover {
;Game over function

;First immediately disable the game
hadd -m shiffre game_enabled 0

;Output a Game Over message
clear @shiffre
echo @shiffre Game Over (the number was hget(shiffre,number)hget(shiffre,number) hget(shiffre,number)+ ) +!Youreachedlevel+ ! You reached level +!Youreachedlevel+($hget(shiffre,level),!)

;Finally end the script by halting
halt
}

on *:CLOSE:@shiffre:{
;User closed the window, the game is now disabled
hadd -m shiffre game_enabled 0
}

on 1:KEYDOWN:@shiffre:*:{
;First check if the script has asked to input something
if ($hget(shiffre,game_enabled) = 2) {

;Calculate the number pressed
var %keypressed
if ($keyval < 60) %keypressed = calc(calc(calc(keyval - 48)

;Also allow keys from the numpad
else %keypressed = calc(calc(calc(keyval - 96)

;Checks if it was a valid input, else return
if (($len(%keypressed) != 1) || (%keypressed !isin 1234567890)) return

;Check if it was the correct number
if (%keypressed = $hget(shiffre,number)) {
;You pressed the right number

;The game doesn't allow any input anymore now
hadd -m shiffre game_enabled 0

;Increase level by 1
hinc -m shiffre level

;Increase x by 1, max value is 65 to avoid errors at very high levels
if ($hget(shiffre,y) < 65) hinc -m shiffre y

;Increase y by 1, max value is 25 to avoid errors at very high levels
if ($hget(shiffre,x) < 25) hinc -m shiffre x

;Display a message
clear @shiffre
echo @shiffre That is correct!

;In 1 second a new level will start
.timernewlevel 1 1 startshiffre
}
else {
;wrong number: game over
gameover
}
}
}

11:10 pm
[emptyvase]

4:10 pm
[emptyvase]

Today a prayer for everyone

11:55 pm
[emptyvase]

MADELEINE COME BACK PLEASE; think about it at least if you want.

11:50 pm
[emptyvase]

Dear friends,

Friday the 13th is back!

On 13th October 2006 it's a Friday.

Do you know some interesting facts about Friday the 13th?

Here they are:

Paraskevidekatriaphobics is the phenomenon, which describes those afflicted with a morbid fear of Friday the 13th.
The Turks so disliked the number 13 that it was practically expunged from their vocabulary
Many cities do not have a 13th Street or a 13th Avenue.
Many buildings don't have a 13th floor.
Hotels do not have room number 13.
Even the opera houses in Italy avoid this number.

These facts clearly indicate that the myth of Friday the 13th is worldwide.

The reason why this myth developed is because it is generally associated with the fate of Jesus as the 13th guest among his 12 apostles in the Biblical account of the Last Supper. The Bible tells us that one of the dinner guests, apostles went on to betray Jesus Christ, setting the stage for the crucifixion of Jesus on the next day-a Friday! It was, for many years, designated the day for capital punishment and informally referred to as "hangman's day." At some places it is also believed that it was Friday the 13th when Eve tempted Adam with the forbidden fruit.

Numerology can surely give a clear and correct answer to this problem. In Numerology every number has a particular meaning. These meanings have been adopted from the Egyptian pyramids. On the pyramids some pictures are engraved and they denote some numbers.

On the pyramids in Egypt, there is a picture of the number 13, named 'LA MUERTE' which symbolises 'Death'. In the picture there is a skeleton with scythe (death) reaping down men, and a crowned head of a man fallen at the point of the scythe. At its back, is a female head with flowing hair parted in the centre.

This is a symbol of the conception of realisation. Most people believe that this indicates death, transmutation, deception, destruction, hope, faith and rebirth.

But here is the point where the mistake arises. People have not understood the hidden meaning of the picture. They just deciphered what was visible and failed to understand the symbolic meaning. After my analysis and experience of more than 3 decades, I concluded that this number is not at all lucky. The skeleton with scythe signifies that man has to multiply his efforts during this period and if he tends to be lethargic, then his failure is certain. But if he faces the adversities with confidence and courage then his success is 100% sure.

It was believed that number 13 was very auspicious for Ex- Prime Minister Atal Behari Vajpaayee but this time even the election results declared on 13th did not yield any positive result for Mr. Vajpayee. I do not want to discuss politics here but just want to make my readers clear that number 13 is an uncertain number. One never knows how it might work the next time. But this does not mean it is inauspicious. It might be lucky at times and might work against the next time.

A week ago, a businessman contacted me and told that his brother experienced the negativity of number 13. He prospered in his roadways business and purchased one truck after another, but the moment he purchased the 13th one, his degradation started.

And a few days ago I met a senior manager of HDFC Bank who told me that number 13 has been very lucky in his life. This number has brought huge gains to him.

By now the readers must have become familiar that 13 is lucky for one and unlucky for another. The Number 13 signifies a change, and the change can be positive as well as negative. And please don't develop any myth that a child born on Friday the 13th is jinxed, because in my personal experience there is a reporter in a leading newspaper, which has immense potentials and I forsee him as a senior executive in the editorial section in future.

It is not that the number 13 is considered unlucky everywhere. In the Indian pantheon there are 13 Buddhas, 13 mystical discs surrounding the Indian and Chinese pagodas, 13 snake Gods of the Mexicans.

So, I request everyone to remove this myth of yours and still if there is any confusion, do get in touch with me and you will surely have your doubt cleared.

Hope you enjoy the article and feel free to put your queries / feedbacks on the same here.

BUT THEN WHO LIKES THE FRENCH? THE ENGLISH REFEREE CHEATED IRELAND FROM VICTORY.

ALL JUST FUN AND GAMES

9:05 pm
[emptyvase]

You scored as spiritualist, you are a...spiritulistthe world is your church and templeyou belive in buddha jesus god and hashem love peace and harmony be with youshanti!!!!!!!!!!!!!!!!!! spiritualist63% christian60% jewish50% buddhist50%the religion quiz (choose your answers wisely)

8:12 am
[emptyvase]

god bless young madeleine please i mpore ye; say a prayer for her on sunday!

10:22 am
[emptyvase]

preach and pray faithfully the Divine Hope and Mercy to inflame the world with Peace when wars and calls to violence fill us and threatens the body and soul of all the children of Abraham: Afghans, Iraqi, Iranians, Israelis, Lebanese, Syrians .. Jews and Arabs, Christians and Muslims. That our prayers reach all hearts, hurt, hardened, embittered, soften them et give them drink from the Font of Divine Mercy, and bring the Divine Peace that passes all human dreams and understanding to the whole world.