Wednesday, March 19, 2008

The days of days

What days? Birddays. Literally! It's daniel(DA NIAO's)'s birdday! Wee. Also not to forget, happy birthday 1803! Haven't forgotten you guys too. Anyhow, the star tonight will be Daniel, since I went for his birthday celebration with Sivam, Russell, and...Daniel.

Anyway, it was a simple meetup for dinner and a little pool session. I do suppose it was about time? It seems that all of us were so soaked up with the nitty gritties of life that the fellowship was broken. Alas, it was not to be!

Anyway the plan was simple:

1800hrs
City Hall - Start Point

1810hrs
Douby Gout? Goud? Gourd?

1830hrs - xxxxhrs (Check Point 1)
Parkmall - Sakae Sushi (buffet)

xxxx=2130hrs..
Eat and talk cock..

2130hrs
Paradiz center (Check Point 2)
fy_pool_day..kidding. just pool

2300hrs
head for home..boonlay!@!

Well. That's the brief outline. I do feel quite lazy to type properly...especially when distracted with stuff. Well for one, Russell seemed overly love-sick! Lethargic, distracted, emo-tional, anxious. Well Russ, like Adeline said, pluck some courage from SOMEwhere. It may be infatuation, it may be not. Either way, you have to choose to act like a man, or turn away. That's my take.

I'm happy to see you guys surviving. Especially Dan and Sivam...going to ORD soon. Well we'll meet up soon yeah. It's a pity player1 not there. Nvm. U got GM hax.

Anyway to show that we are in the -IN- thing..here are some pics..



The four of us stoning...


The 3 of us in the right mind...


Guess who's emo-ing?


Told ya...he went to find her church!


Daniel sighing..he's 22 now..a year older and 10 KGs heavier.

That's all for now folks!
-ps Russ. was careful not to release any info!

Jon

Monday, March 17, 2008

The BB Vesper

Great God who knowest all our needs
Bless Thou our watch, and guard our sleep;
Forgive our sins of thought and deed,
And in Thy peace Thy servants keep.

We thank Thee for the day that's done
We trust Thee for the days to be;
Thy love we learn in Christ Thy Son,
O May we all His glory see!

Amen.

Cheers! The BB spirit lives.
Jon

Friday, March 07, 2008

Programming Headaches

So...here I am trying to make things right. Let's take a look...

include
Main(void)
{
int A, a, sumInt;
flaot B, divFloat;
character c;

printf("\n Type a character A or a: ");
scanf("%f", &c);
if(c=A){
printf(" you have typed '%c' \n", c);
}else{
printf(" you have typed '%c' \n", c);
}

printf("\n Type integer numbers for A and a: \n");
scanf("%d", &A, &a);
sumInt = A+a;
printf(" Sum of A(%d) and a(%d) is %d \n", A,a, sumInt);

printf("\n Type a float number for B: \n");
scanf("%d", B);
divFloat = A*B;
printf(" A(%d) over B(%f) is %f \n",A,B, divFloat);
divFloat = A/a;
printf(" A(%d) over a(%d) is %f \n",A,a, divFloat);
divFloat = float A/a;
printf(" A(%f) over a(%d) is %f \n",A,a, divFloat);
}


and this is what i made it..

#include
#define d 0
#define D 0
Main(void)
{
int A, a, sumInt;
float B, divFloat;
char c;

printf("\n Type a character d or D: ");
scanf("%c", &c);
if(c=D){
printf(" you have typed '%c' \n", c);
}else{
printf(" you have typed '%c' \n", c);
}

printf("\n Type integer numbers for A and a: \n");
scanf("%d", &A, &a);
sumInt = A+a;
printf(" Sum of A(%d) and a(%d) is %d \n", A,a, sumInt);

printf("\n Type a float number for B: \n");
scanf("%f", &B);
divFloat = (float) A*B;
printf(" A(%d) over B(%f) is %f \n",A,B, divFloat);
divFloat = (float) A/a;
printf(" A(%d) over a(%d) is %f \n",A,a, divFloat);
divFloat = (float) A/a;
printf(" A(%d) over a(%d) is %f \n",A,a, divFloat);

}


but no..it just can't compile!!

blabberings 08..