Tuesday, May 03, 2005

After all not a bad day

Today we went for Kaal but hard Luck, the movie was playing fullhouse.
We then decided to wait till the next show but it was Fullhouse for the next show too.
then finally decided to go for XXX-2 : State of The Union
And U know what, Ice Cube sucked hard in that movie. Just a bag of
shit, all crap bundled up.I could no longer stand up the "Adreline Pumpin"
Action Seens. All bullshit. Nothin like the Vin Diesel one (XXX -1 ).
I say even Austin Powers stands above that crap. No attitude ,
no looks, no scene(action/hot/comedy),simply nothin that u could recollect
(n believe me u dont wont to).

On a scale of 5 i would rate it *1/2.

But Still it wasnt all that bad ( i mean apart from the movie part ).
We went for the Boat ride in HussainSagar. It was good, the climate was
Coool and Pleasent.Had a gr8 time at eat Street and watched TV after
4 months, the promos ,ads good.
A not so bad outing at all.
And just for ur info i am leavin on 5. will be back in June.

And this is a good script i got my hands on,
found it somewhere wont tell u that but U will love it

" A PHP Script to send SMS "
----------------------------------------------------------------------

# 10 digit number .. can get it from a form using post method
$t = $_POST['toNo'];
$from="9885323234@ri.irisme.net";

# convert it to an email format
$to="91".$t."@ri.irisme.net";
$subject="hi";

# message body .. can get it from a form using post method
$body = $_POST['message'];
$header= "From:". $from."\r\n";
$header.= "X-Mailer: PHP/". phpversion();

if (mail($to,$subject,$body,$header,"-f $from"))
{
echo "To: $t \n";
echo "From: $f \n";
echo "Message: $body \n";
echo "message sent successfully.";
}
else
{
echo "Message delivery failed...\n";
}



-------------------------------------------------------------------

No comments:

Interview Question Preperation : Find longest subarray whose sum is equal to K

Software Engineering Practice interview question Given a array of N elements. Find the length of Longest Subarray whose sum is equal to give...