Missy Elliot is coming to town. this saturday, apart from that south is south, and west is east.
Quote of the Day
"Could you hack into the FBI?"
After a brief pause "Anything is possible"
My skills
The musing and sometimes not so wise words of Jonathan Dalrymple, Global Traveller, Programmer, Financial Rocket Scientist, Conspiracy Theorist, Part-time comedian, full-time funny man and whatever else i randomly decide to do.
"Could you hack into the FBI?"
After a brief pause "Anything is possible"


Tim "It would be helpful, if you didn't mention how awful the press ads are, as we would like them to stay around beyond the first day"
//Convert bytes to higer values
function byteConvert($INPUT)
{
$temp = $INPUT;
//If it's over a Gigabyte
if ($temp >= 1024000000){
$temp = $temp / 1024000000;
$temp = round($temp,2);
$temp = $temp . " " . "Gb";
return $temp;
}
//If it's over a Megabyte
elseif ($temp >=1024000){
$temp = $temp / 1024000;
$temp = round($temp,2);
$temp = $temp . " " . "Mb";
return $temp;
}
//If' it's over a kilobyte
elseif ($temp >=1024){
$temp = $temp / 1024;
$temp = round($temp,2);
$temp = $temp . " " . "Kb";
return $temp;
}
//If' it's under a kilobyte
else
$temp = round($temp,2);
$temp = $temp . " " . "b";
return $temp;
}
?>
Enjoy

"It was like they just lifted the 13 quid off me the minute i walked through the door, it's the perfect crime, i had no recourse!"
Nothing Like a Sun Flower
In the Limo on the way to the Reception
From the otherside of the ribon
My Mum worked for two days to get all the flowers done, but compared to what other members of the family did it pales into nothing-ness.
Blue Roses?
The Church where they got married, thats my cousin Helen, who was the offical photographer
My Brother, and my new Sister in-law, Tamara, the Brides step mother's head, and the cheif brides maid's head, Elair(E-lie-la)Ele "I didn't have a boyfriend for like a year, and then my mum just asked me if i was a Lesbian, because if i was she was ok with that."
Dave "Stacy doesn't mind if i play games, she just goes and plays Need for speed"
Me "Where do you find these girls?"
Dave "I don't know they just flock to me"
At the moment it's something to4 in the morning. I've been up for about 21 hours. Currently we're in the flower market in vauxhall. I got some pics to boot.
So far i've eaten some great BBQ chicken. Had a arguement with my brother about crap,
Not slept.
Tried and failed to loop through putting values in a grid object.
And now we get to buy flowers.
fun fun fun



My Dad "How old are you now?"
Me "19"
My Dad "Oh, i thought you were 17"

"We better stop talking about bombs, before someone gets the wrong idea"
Tim said @ 5pm on a friday "I'm only just starting my daily work now"
#include <stdio.h >
int userBrowser
main()
{
switch (userBrowser){
case (1){
printf("Danger, Danger IE Detected /n");
exit;
}
case (2){
printf("Welcome Lynx user! /n");
/* How user access to */
accessSite();
break;
}
default{
accessSite();
break;
}
return 0;
}
Ele "It's made by a no-name indie production company, i had to sign a contract that said i couldn't get any money later, and i wasn't allowed to speak, I know it sounds like a softcore porn movie, but's it not"
| "Firstly, I didn't buy this ticket. But if you have to spend 14 hours on a plane, this is the way to do it. Luxury 'cubicles', an entire hollywood and music back catalogue with noise-cancelling headphones and an a la carte menu - not to mention a proper vintage wine selection." Course you didn't | |
/*Time card Calulator
Jonathan Dalrymple
July 14th, 2006
*/
#include <stdio.h>
/*Declare the varibles for each day*/
float monday, tuesday, wednesday, thursday, friday;
/*Declare the number of days worked*/
float daysInWeek;
/*Rate of pay*/
float rop;
/*New varible to handle the results of our calculations*/
float hoursWorked, payExpected;
main()
{
printf("Welcome to Jon's Payroll program \n");
/*Get info from the user*/
printf("How many hours did you work on Monday? \n");
scanf("%f", & monday);
printf("How many hours did you work on Tuesday? \n");
scanf("%f", & tuesday);
printf("How many hours did you work on Wednesday? \n");
scanf("%f", & wednesday);
printf("How many hours did you work on Thursday? \n");
scanf("%f", & thursday);
printf("How many hours did you work on Friday? \n");
scanf("%f", & friday);
/*Get value to dvide by
printf("How many days did you work this week?");
scanf("%f", & daysInWeek);*/
/*How much was the user getting paid*/
printf("How much were you paid?\n");
scanf("%2f", & rop);
/*Do the math*/
hoursWorked = (monday + tuesday + wednesday + thursday + friday);
payExpected = (hoursWorked * rop);
/*Return the results*/
printf("You worked %2f %s",hoursWorked," Hours \n");
printf("You should get paid £%2f\n", payExpected);
return 0;
}
Youtube vids on, my site, i'm clearly joining the trend army, where's that web 2.0 design?
"Where have you been the last couple of days, Prison?"
Me "There are some real good books here, check out this one on Electrical Rectifiers"