Total Pageviews
Wednesday, 11 March 2009
Just Like A Star
Just like a star across my sky,
Just like an angel off the page,
You have appeared to my life,
Feel like I'll never be the same,
Just like a song in my heart,
Just like oil on my hands,
Oh.. I do love you,
Still i wonder why it is,
I don't argue like this,
With anyone but you,
We do it all the time,
Blowing out my mind,
You've got this look i can't describe,
You make me feel like I'm alive,
When everything else is a fade,
Without a doubt you're on my side,
Heaven has been away too long,
Can't find the words to write this song,
Oh.,..
Your love,
Still i wonder why it is,
I don't argue like this,
With anyone but you,
We do it all the time,
Blowing out my mind,
I have come to understand,
The way it is,
It's not a secret anymore,
'cause we've been through that before,
From tonight I know that you're the only one,
I've been confused and in the dark,
Now I understand,
I wonder why it is,
I don't argue like this,
With anyone but you,
I wonder why it is,
I wont let my guard down,
For anyone but you
We do it all the time,
Blowing out my mind,
Just like a star across my sky,
Just like an angel off the page,
You have appeared to my life,
Feel like I'll never be the same,
Just like a song in my heart,
Just like oil on my hands
Monday, 9 March 2009
Dreams
Some important product KEYS!
Magic!!!!!!!!
Make Your Own Calculator
Open a Notepad and copy the codes from this page and paste it in the Notepad. Save the file as Calc.bat
Your calculator is created.....
Codes are here given below......
@echo off
color 0A
title CALCULATOR VERSION 1.2(pal4all)
:loop
cls
echo By pal4all
echo Never-Seen-B4
echo.
echo Calculator Version 1.2(pal4all)
echo =====never======seen======b4=====pall4all=
echo * = MULTIPLY
echo + = ADD
echo - = SUBTRACT
echo 2 = SQUARED
echo / = DIVIDE
echo After an equation, type CLEAR to clear the screen of your equations,
echo type KEEP to leave them there,
echo or type EXIT to leave. :noclear
set /p UDefine=
set /a UDefine=%UDefine%
echo.
echo =
echo.
echo %UDefine%
echo KEEP, CLEAR, OR EXIT?
set /p clearexitkeep=
if %clearexitkeep%==CLEAR goto loop
if %clearexitkeep%==KEEP echo. && goto noclear
if %clearexitkeep%==EXIT (exit)
:misspell
echo.
echo ////////////////\\\\\\\\\\\\\\\\\\\\/////////////
echo You misspelled your command. Please try again (make sure you are typing in all caps LIKE THIS).
echo Commands:
echo CLEAR Clear all previous equations and continue calculating.
echo KEEP Keep all previous equations and continue calculating.
echo EXIT Leave your calculating session
echo Enter in a command now.
set /p clearexitkeep=
if %clearexitkeep%==CLEAR goto loop
if %clearexitkeep%==EXIT (exit)
if %clearexitkeep%==KEEP goto noclear
goto misspell